Thing Reader

Reads things from the WAD file.
This commit is contained in:
2025-04-07 19:09:33 -04:00
parent 76358caaff
commit 569265f414
8 changed files with 107 additions and 2 deletions

View File

@@ -1,9 +1,11 @@
mod linedef;
mod lump;
mod sidedef;
mod thing;
mod vertex;
pub use linedef::LinedefLump;
pub use lump::{Lump, LumpType};
pub use sidedef::SidedefLump;
pub use thing::ThingLump;
pub use vertex::VertexLump;