diff options
author | HampusM <hampus@hampusmat.com> | 2024-04-25 20:48:39 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-05-01 19:18:03 +0200 |
commit | 9530d22cf5369ceba369487fff1b85376da64657 (patch) | |
tree | 5beeaa594e77a32877336e119035197e8cd5ac9d /engine/src/lib.rs | |
parent | 33f7772ddddf2a1c2bfefc50ef39f123df8af3e4 (diff) |
feat(engine): add basic Wavefront obj file parsing
Diffstat (limited to 'engine/src/lib.rs')
-rw-r--r-- | engine/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engine/src/lib.rs b/engine/src/lib.rs index b3f4aa1..f9daac3 100644 --- a/engine/src/lib.rs +++ b/engine/src/lib.rs @@ -19,11 +19,13 @@ use crate::event::{ mod opengl; mod shader_preprocessor; +mod util; pub mod camera; pub mod data_types; pub mod delta_time; pub mod event; +pub mod file_format; pub mod input; pub mod lighting; pub mod material; |