rsnaker/game_logic/mod.rs
1//! # Game logic Modules
2//!
3//! This module organizes various components of the game logic, including:
4//!
5//! - `playing_logic`: handles high level game logic during gameplay.
6//! - `playing_thread_manager`: manages the main game thread and timing.
7//! - `state`: maintains the game's state, including score and status.
8//! - `fruits_manager`: handles fruit-related logic and management.
9//! - `game_options`: provides configuration options for the game with CLI integration.
10//!
11//! These modules collectively contribute to the core mechanics of the game logic.
12//!
13
14pub mod fruits_manager;
15pub mod game_options;
16pub mod playing_logic;
17pub mod playing_thread_manager;
18pub mod state;