Files
taptap2024_GJ_chidouren/Assets/Scripts/Game/GameState.cs
2024-10-21 16:20:37 +08:00

14 lines
219 B
C#

namespace Game
{
public enum GameState
{
InitGame = 0,
StartGame,
ContinueGame,
FightGame,
RevertGame,
SuccessGame,
FieldGame,
ExitGame,
}
}