diff options
author | HampusM <hampus@hampusmat.com> | 2023-10-13 23:32:00 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-10-13 23:32:00 +0200 |
commit | 12f48046b2606fc77a1312a6d5e5fc7ff9feff88 (patch) | |
tree | 644f4abd6785a5f0c066c7fbadcfc5e820a41ebf /engine/src/lib.rs | |
parent | cfa73b1ea42fa491ff9e00bb5efb5e5a5d860578 (diff) |
refactor(engine): move uses of OpenGL to OpenGL module
Diffstat (limited to 'engine/src/lib.rs')
-rw-r--r-- | engine/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engine/src/lib.rs b/engine/src/lib.rs index 5b313ec..e036c38 100644 --- a/engine/src/lib.rs +++ b/engine/src/lib.rs @@ -6,11 +6,10 @@ pub use glfw::WindowSize; use crate::object::Object; use crate::vector::Vec2; +mod opengl; mod renderer; -mod shader; pub mod color; -pub mod currently_bound; pub mod object; pub mod vector; pub mod vertex; |