oecs-sharp/Game.TicTacToe/Components/Player.cs

9 lines
92 B
C#

namespace Game.TicTacToe;
public enum Player : byte
{
None = 0,
X = 1,
O = 2
}