10 lines
134 B
C#
10 lines
134 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class CameraView
|
|
{
|
|
public Camera camera;
|
|
|
|
public Material cameraMaterial;
|
|
}
|