Game settings
Game settings change the way the game is initialized. Player count
is a setting that all games have. Two player games such as Tic-Tac-Toe always have two players, while some multiple player games like Uno supports between two to four players.
Some games have additional game settings. In Dots and Boxes, there is a Size
setting that takes on the values 2x2
, 3x3
, 7x7
, and Any
. Bots do not have access to the game settings field because they can be implicitly derived from the game state. In this Dots and Boxes example, the game setting gets converted into the board_width
and the board_height
fields.
Last updated