diff options
| author | Micha White <botahamec@outlook.com> | 2022-09-18 16:45:05 -0400 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2022-09-18 16:45:05 -0400 |
| commit | 83295e01008bdf25e03f6b5aa18b93b735a5e326 (patch) | |
| tree | 7010e0f2fb8994a7168e3a11b4fa996804a49342 /src/lib.rs | |
| parent | 3e913d329ebdb36b66ccb8ac7ccea203db266d20 (diff) | |
instancing
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |
