Files
wad-reader/src/wad/mod.rs
Wesley Irvin fb802a8d2b WAD Refactor
Refactored some of the code for the wadfile reading. Moved out the
readers into their own separate file, and moved some utilities around to
create wad utilities for more modularity.
2025-03-31 19:30:26 -04:00

5 lines
56 B
Rust

mod header;
pub mod wadfile;
pub use wadfile::WADFile;