uxie 0.5.6

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
mod binary;
mod c_format;
mod json_format;
mod types;

pub use binary::{
    read_map_header_from_bytes, read_map_headers_from_arm9, write_map_header_to_bytes,
};
pub use c_format::{
    ParsedMapHeader, parse_map_headers_from_c, parsed_to_hgss_header, parsed_to_pt_header,
};
pub use json_format::*;
pub use types::*;