Vertex Loading

Added the ability to load vertex data from the WAD. Still needs
some processing to make more robust, but for now is loading data.
This commit is contained in:
2025-03-30 13:55:46 -04:00
parent 16f21694d9
commit ffb7b9d9c7
13 changed files with 137 additions and 22 deletions

3
src/types/mod.rs Normal file
View File

@@ -0,0 +1,3 @@
mod vertex;
pub use vertex::Vertex;

5
src/types/vertex.rs Normal file
View File

@@ -0,0 +1,5 @@
#[derive(Clone, Debug, PartialEq)]
pub struct Vertex {
pub x: i16,
pub y: i16,
}