Ultimate Tic-Tac-Toe v0.1.0 API Reference
Modules
UltimateTtt
is an Elixir module implementing the game Ultimate Tic-Tac-Toe. It implements the core, sequential game logic as well as an OTP app for creating and managing games. If you're unfamiliar with the game, check out Ultimate Tic-Tac-Toe by Ben Orlin.
This module implements the core, sequential rules of Ultimate Tic-Tac-Toe.
This module represents one of the nine inner tic-tac-toe boards
in a game of Ultimate Tic-Tac-Toe. Normally you will not need to
interact with this module directly as most of its functionality
is exposed through UltimateTtt.Game.OuterBoard
.
This module represents the larger, outer tic-tac-toe grid containing
9 inner tic-tac-toe grids (which are in turn represented by
UltimateTtt.Game.InnerBoard
). Normally you will not need to
interact with this module directly as most of its functionality
is exposed through UltimateTtt.Game
.