#![doc = include_str!("../README.md")]
mod cursor;
mod draw_map;
pub use draw_map::draw_map;
mod from_file;
pub use from_file::from_file;
mod mapcolors;
mod parser;
pub use parser::Parser;
mod record;
pub use record::*;
mod guess_winner;
mod guid;
mod render;
mod translations;
mod body_parser;