mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-29 19:03:10 +00:00
16 lines
234 B
C#
16 lines
234 B
C#
using UnityEngine;
|
|
|
|
namespace Raindrop.Camera
|
|
{
|
|
public class CameraIdentifier : MonoBehaviour
|
|
{
|
|
public CameraType type;
|
|
|
|
public enum CameraType
|
|
{
|
|
Main,
|
|
Minimap
|
|
}
|
|
}
|
|
}
|