tmaze 1.14.2

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
pub mod constants;
pub mod data;
pub mod game;
pub mod helpers;
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};