Added ability to read WAD directory

This commit is contained in:
2025-03-27 17:43:52 -04:00
parent b2028e0207
commit 98cfdb93a6
15 changed files with 208 additions and 0 deletions

5
src/wad/mod.rs Normal file
View File

@@ -0,0 +1,5 @@
mod directory;
mod header;
mod wadfile;
pub use wadfile::WADFile;