2025-10-15 17:35:12 +08:00

14 lines
245 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Enum
{
public enum GameState
{
NotStarted, // 游戏未开始
Running, // 游戏进行中
Finished // 游戏完成
}
}