mazinator 0.1.1

Command line tool to generate beautiful maze.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::env;

use mazinator::algo;
use mazinator::display::*;
use mazinator::utils::*;

fn main() {
    let config = Options::parse(env::args());
    let walls = algo::run(&config);
    // Finally print maze.
    generate_maze(config.cols, walls);
}