mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-30 19:12:15 +00:00
17 lines
245 B
C#
17 lines
245 B
C#
using Raindrop;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class CameraIdentifier : MonoBehaviour
|
|
{
|
|
public CameraType type;
|
|
|
|
|
|
public enum CameraType
|
|
{
|
|
Main,
|
|
Minimap
|
|
}
|
|
}
|