Files
taptap2024_GJ_chidouren/Assets/Scripts/System/StateSystem/GameGlobalState.cs

20 lines
302 B
C#
Raw Normal View History

2024-10-16 00:03:41 +08:00
/*
* Author: Foldcc
* Mail: lhyuau@qq.com
*/
namespace System.StateSystem
{
public enum GameGlobalState
{
GameBegin,
GameInit,
GameLogin,
GameLoading,
GameHome,
GameRoom,
GameExit,
GameAssetCheck,
Certification,
}
}