amazeing 0.8.0

Amazeing is a maze generator/solver application with simulation/visualization.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod bound;
mod color_gradient;
mod display_helpers;
mod file;
mod mouse;
mod run_algorithm;
mod time;

pub(crate) use bound::*;
pub(crate) use color_gradient::*;
pub(crate) use display_helpers::*;
pub(crate) use file::*;
pub(crate) use mouse::*;
pub(crate) use run_algorithm::*;
pub(crate) use time::*;