Files
wad-reader/src/lumps/mod.rs
Wesley Irvin 569265f414 Thing Reader
Reads things from the WAD file.
2025-04-07 19:09:33 -04:00

12 lines
206 B
Rust

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;