tmaze 1.15.0

Simple multiplatform maze solving game for terminal written entirely in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod app;
pub mod constants;
pub mod data;
pub mod helpers;
pub mod logging;
pub mod renderer;
pub mod settings;
#[cfg(feature = "sound")]
pub mod sound;
pub mod ui;
#[cfg(feature = "updates")]
pub mod updates;

use cmaze::{core, gameboard};