summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2022-09-18 16:45:05 -0400
committerMicha White <botahamec@outlook.com>2022-09-18 16:45:05 -0400
commit83295e01008bdf25e03f6b5aa18b93b735a5e326 (patch)
tree7010e0f2fb8994a7168e3a11b4fa996804a49342 /src/lib.rs
parent3e913d329ebdb36b66ccb8ac7ccea203db266d20 (diff)
instancing
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index fbc517b..15f64b3 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -5,9 +5,11 @@
#![allow(clippy::module_name_repetitions)]
pub mod config;
+mod instance;
pub mod renderer;
mod vertex;
pub use config::RenderWindowConfig;
+pub(crate) use instance::Instance;
pub use renderer::Renderer;
pub(crate) use vertex::Vertex;