Files

14 lines
219 B
C#
Raw Permalink Normal View History

2024-10-16 00:03:41 +08:00
namespace Game
{
public enum GameState
{
InitGame = 0,
StartGame,
ContinueGame,
FightGame,
RevertGame,
SuccessGame,
FieldGame,
ExitGame,
}
}