19 lines
305 B
C#
19 lines
305 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// 页面类型
|
|
/// </summary>
|
|
public enum EnumPage {
|
|
None,
|
|
|
|
Menu,// 主菜单
|
|
Scene,// 场景选择
|
|
Prepare,// 准备游戏
|
|
Battle,// 战斗页面
|
|
Settlement,// 结算页面
|
|
|
|
Settings,// 游戏设置
|
|
}
|