wolfrpg-map-parser 0.6.0

Parser for Wolf RPG Editor map files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # 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 mod db_parser;

pub use map::Map;
pub use db_parser::tileset_parser;
pub use db_parser::data_parser;
pub use db_parser::project_parser;
pub use db_parser::common_events_parser;