1//! Contains most of the actual game-related code. 2 3pub mod action; 4pub mod error; 5pub mod rules; 6pub mod score; 7pub mod state; 8pub mod r#trait; 9pub mod variants;