wow-mpq 0.6.2

High-performance parser for World of Warcraft MPQ archives with parallel processing support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! MPQ table structures (hash, block, HET, BET)

mod bet;
mod block;
mod common;
mod hash;
mod het;

// Re-export all public types
pub use bet::{BetFileInfo, BetHeader, BetTable};
pub use block::{BlockEntry, BlockTable, HiBlockTable};
pub use hash::{HashEntry, HashTable};
pub use het::{HetHeader, HetTable};

// Re-export common utilities if needed