Sidedef Reader

Added the ability to read sidedef lumps from the wadfile.
This commit is contained in:
2025-03-31 20:20:52 -04:00
parent a4fc4b89f8
commit fdb68ce0ff
8 changed files with 113 additions and 4 deletions

View File

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