tic_tac_toe_rust/lib.rs
1//! The Tic-Tac-Toe game.
2//! This crate provides the logic for the game, as well as a basic frontend for CLI.
3//! The game is played by two players, who take turns marking the spaces in a 3×3 grid.
4//! The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row is the winner.
5//! The game can be played versus another human player or versus a computer player.
6//! The computer player can be configured to play randomly or to use the minimax algorithm.
7
8pub mod frontend;
9pub mod game;
10pub mod logic;