movingai/lib.rs
1#![doc(
2 html_logo_url = "https://github.com/THeK3nger/movingai-rust/blob/37ad04b72a2e9e8fb7f794c7f1be176fee99b67e/assets/ma.png",
3 html_favicon_url = "https://github.com/THeK3nger/movingai-rust/blob/37ad04b72a2e9e8fb7f794c7f1be176fee99b67e/assets/ma.png"
4)]
5#![deny(missing_docs)]
6
7//!
8//! The MovingAI Benchmark Parser
9//!
10//! # Overview
11//!
12//! Things.
13
14
15/// Contains all the parser functions.
16pub mod parser;
17
18mod map2d;
19
20/// Contains data structure for 2D MovingAI maps.
21pub use map2d::*;