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#[cfg(feature = "serde")]
15#[macro_use]
16extern crate serde;
17
18/// Contains all the parser functions.
19pub mod parser;
20
21mod map2d;
22
23/// Contains data structure for 2D MovingAI maps.
24pub use map2d::*;
25