tic_tac_toe_rust 0.4.0

A simple tic tac toe game with a minimax ai
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module contains the logic of the game.
//! It contains the models, which are the data structures used in the game.
//! And it contains the validators, which are the functions that validate the game state.

pub mod errors;
pub mod models;
mod validators;

pub use models::cell::Cell;
pub use models::game_move::GameMove;
pub use models::game_state::GameState;
pub use models::grid::Grid;
pub use models::mark::Mark;