toetactic 0.1.1

A Tic Tac Toe game for your terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod exiting;
pub mod ingame;
pub mod pregame;
pub mod pregame_confirm;
pub mod startover;

#[derive(Debug, Eq, PartialEq, Clone, Default)]
pub enum CurrentScreen {
    #[default]
    Pregame,
    PregameConfirm,
    Ingame,
    Startover,
    Exiting(Box<CurrentScreen>),
}