namespace TicTacToe { enum Player { Empty = 0, Cross = 1, Circle = 2 } }