summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Phase/GamePhase.cs
blob: fd127587993272c7dceb9d7bfea5f1583c21d577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace WK
{

    public enum EGamePhase
    {
        Launch = 0, // splash screen 
        //Login  = 1, // 
        Main   = 2, // 主界面                 
        Battle = 3, // 战斗场景
        Dojo   = 4, // 训练道场

        Num
    }

}