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.
This commit is contained in:
2025-03-31 19:30:26 -04:00
parent 8de9d56c2d
commit fb802a8d2b
7 changed files with 93 additions and 87 deletions

View File

@@ -1,4 +1,4 @@
mod header;
mod wadfile;
pub mod wadfile;
pub use wadfile::WADFile;