From 83295e01008bdf25e03f6b5aa18b93b735a5e326 Mon Sep 17 00:00:00 2001 From: Micha White Date: Sun, 18 Sep 2022 16:45:05 -0400 Subject: instancing --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib.rs') 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; -- cgit v1.2.3