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

9 lines
87 B
C#

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