Files
wad-reader/src/utils/mod.rs
Wesley Irvin ffb7b9d9c7 Vertex Loading
Added the ability to load vertex data from the WAD. Still needs
some processing to make more robust, but for now is loading data.
2025-03-30 13:55:46 -04:00

8 lines
145 B
Rust

mod error;
mod helpers;
pub use helpers::read_ascii;
pub use helpers::read_i16_le;
pub use helpers::read_u32_le;
pub use helpers::validate_wad;