Linedef Reader

Added ability to read linedef lumps. Also added all the test
functionality to make sure we are reading the linedefs correctly.
This commit is contained in:
2025-03-30 19:21:52 -04:00
parent 4b3822423f
commit c3b3081e74
8 changed files with 125 additions and 3 deletions

View File

@@ -1,6 +1,8 @@
mod linedef;
mod lump;
mod vertex;
pub use linedef::LinedefLump;
pub use lump::Lump;
pub use lump::LumpType;
pub use vertex::VertexLump;