trictrac/store/src/lib.rs

14 lines
211 B
Rust
Raw Normal View History

2023-10-07 20:46:24 +02:00
mod game;
2023-11-01 20:02:53 +01:00
pub use game::{EndGameReason, GameEvent, GameState, Stage};
2023-10-07 20:46:24 +02:00
mod player;
2024-03-09 22:20:11 +01:00
pub use player::{Color, Player, PlayerId};
2023-10-07 20:46:24 +02:00
2023-10-28 15:12:04 +02:00
mod error;
pub use error::Error;
mod board;
2024-01-27 20:22:20 +01:00
pub use board::CheckerMove;
2023-10-28 15:12:04 +02:00
mod dice;