12 lines
155 B
C#
12 lines
155 B
C#
namespace Minesweeper.Core
|
|
{
|
|
public enum GameState
|
|
{
|
|
FieldSelection,
|
|
Preparing,
|
|
Playing,
|
|
Lost,
|
|
Won
|
|
}
|
|
}
|