summaryrefslogtreecommitdiff
path: root/engine/src/lib.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2024-04-15 23:09:11 +0200
committerHampusM <hampus@hampusmat.com>2024-04-15 23:09:11 +0200
commit9778d9668f8b5d651aaed1f64414f7ed195d153d (patch)
treee7c67bec8e03816e75aad7b1dd89730912908c8d /engine/src/lib.rs
parentb748977205eea249dc61e6f755bd6ff86c8f535b (diff)
feat(engine): add projection options to camera component
Diffstat (limited to 'engine/src/lib.rs')
-rw-r--r--engine/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/src/lib.rs b/engine/src/lib.rs
index f83d85b..b3f4aa1 100644
--- a/engine/src/lib.rs
+++ b/engine/src/lib.rs
@@ -18,7 +18,6 @@ use crate::event::{
};
mod opengl;
-mod projection;
mod shader_preprocessor;
pub mod camera;
@@ -30,6 +29,7 @@ pub mod lighting;
pub mod material;
pub mod math;
pub mod mesh;
+pub mod projection;
pub mod renderer;
pub mod shader;
pub mod texture;