uxie 0.6.1

Data fetching library for Pokemon Gen 4 romhacking - map headers, C parsing, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Event file parsing for Pokemon Gen 4 maps
//!
//! Event files contain map-specific data like NPCs, warps, triggers, and signs.
//! This module supports both binary and JSON formats.

pub mod binary;
pub mod json;
#[cfg(test)]
mod tests;

pub use binary::{
    BgEventBinary, BinaryEventFile, CoordEventBinary, ObjectEventBinary, WarpEventBinary,
};
pub use json::{BgEventJson, CoordEventJson, JsonEventFile, ObjectEventJson, WarpEventJson};