war3parser 0.4.0

A extractor and parser for Warcraft 3 map files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Portable, reusable data model shared by the library, CLI, and WASM bindings.
//!
//! Parsing lives in [`crate::formats`] and [`crate::archive`]; this module
//! holds the public shapes that callers should depend on. Prefer these types
//! over re-defining DTOs in downstream crates.

mod header;
mod image;
mod metadata;
mod snapshot;

pub use header::War3MapHeader;
pub use image::{War3Image, War3ImageData};
pub use metadata::War3MapMetadata;
pub use snapshot::{ImportEntry, MapSnapshot, StringTableEntry};