rsnaker/controls/mod.rs
1//! # Game Control Modules
2//!
3//! This module organizes various components of the game logic, including:
4//!
5//! - `direction`: manages movement directions.
6//! - `input`: get keyboard input.
7//! - `speed`: defines game logic speed.
8//!
9//! These modules collectively contribute to the control part of the game logic.
10//!
11
12pub mod direction;
13pub mod input;
14pub mod speed;