Parser for Wolf RPG Editor map files
The aim of this crate is to allow users to easily parse Wolf RPG Editor map (.mps) files and expose a complete
interface to enable interaction with each component of a map, from the tiles to the events.
This package includes both a library crate that parses the map into a tree of rust structs and a binary crate that outputs the result in JSON format.
Usage
You can run the standalone directly through Cargo:
Or you can add the crate and import the needed modules:
use Map;