wownav_parser/
lib.rs

1//! This crate is used to parse World of Warcraft or rather Trinitycore/vMangos `.mmap` & `.mmtile` files.  
2//! This is very Work in progress and I am working on adding proper documentation for all types since there isnt much to find anywhere else.  
3//! The different modules can be used for each file extension, the structs included in those are only supposed to work for their extension not the other way around.
4//! ### Examples
5//! You can find some examples on how to parse raw bytes into the given structures inside the `tests` folder.  
6//! More examples with `File`/`Reader` usage will be written/documented.
7#![feature(core_intrinsics)]
8pub mod mmap;
9pub mod mmtile;