mgx 0.1.16

A parser for Age of Empires II recorded games.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![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;