rsnaker 0.2.1

A good old retro Snake in terminal UI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # Game Control Modules
//!
//! This module organizes various components of the game logic, including:
//!
//! - `direction`: manages movement directions.
//! - `input`: get keyboard input.
//! - `speed`: defines game logic speed.
//!
//! These modules collectively contribute to the control part of the game logic.
//!

pub mod direction;
pub mod main_menu;
pub mod playing_input;
pub mod speed;