oecs-sharp/examples/TicTacToe/Singletons/GameStatus.cs

10 lines
114 B
C#

namespace TicTacToe;
public enum GameStatus : byte
{
Playing = 0,
XWon = 1,
OWon = 2,
Draw = 3
}