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