20 lines
237 B
C#
20 lines
237 B
C#
using UnityEngine;
|
|
|
|
public class Define
|
|
{
|
|
public enum UIEvent
|
|
{
|
|
Click,
|
|
Drag,
|
|
}
|
|
public enum MouseEvent
|
|
{
|
|
Press,
|
|
Click,
|
|
}
|
|
public enum Cameramode
|
|
{
|
|
QuaterView,
|
|
}
|
|
}
|