wolfrpg_map_parser/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! # Wolf RPG Editor map (.mps) parser
//! 
//! Provides associated functions to parse an entire map file or only certain fragments and struct 
//! methods to access information regarding the map.  

pub mod map;
pub mod event;
pub mod command;
mod byte_utils;
pub mod common;
pub mod page;

pub use map::Map;