Still a very experimental crate!
Map/Scenario Parser for the MovingAI benchmark format. It offers a quick way to parse scenario and map files, plus some map utility to manage and query information from them.
```rust extern crate movingai;
use movingai::parser::parsemapfile;
fn main() { let map = parsemapfile("./test/arena.map").unwrap(); let width = map.get_width(); let tile = map[(4,5)]; // Access map location at row 4 and column 5. } ```