lex_map_editor_std/
lib.rs

1//! # Lex Map Editor Std
2//! simple standard types and parser for "Lex Map Editor"(not released)
3//! and projects using it.
4
5pub mod types;
6pub mod map;
7
8#[cfg(test)]
9mod tests;