28 lines
337 B
C#
28 lines
337 B
C#
using UnityEngine;
|
|
|
|
public class Define
|
|
{
|
|
public enum Scene
|
|
{
|
|
Unknown,
|
|
Login,
|
|
Lobby,
|
|
Game,
|
|
}
|
|
|
|
public enum UIEvent
|
|
{
|
|
Click,
|
|
Drag,
|
|
}
|
|
public enum MouseEvent
|
|
{
|
|
Press,
|
|
Click,
|
|
}
|
|
public enum Cameramode
|
|
{
|
|
QuaterView,
|
|
}
|
|
}
|