diff options
| author | Micha White <botahamec@outlook.com> | 2022-09-18 18:16:19 -0400 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2022-09-18 18:16:19 -0400 |
| commit | cd7d74507fa54d026547b7dda9e1498a81a395b5 (patch) | |
| tree | 7d5435eec9c84dead9cdc36a4ba87dcfe520f5c3 /src/lib.rs | |
| parent | 83295e01008bdf25e03f6b5aa18b93b735a5e326 (diff) | |
An actual instancing API
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,11 +5,11 @@ #![allow(clippy::module_name_repetitions)] pub mod config; -mod instance; +pub mod instance; pub mod renderer; mod vertex; pub use config::RenderWindowConfig; -pub(crate) use instance::Instance; +pub use instance::Instance; pub use renderer::Renderer; pub(crate) use vertex::Vertex; |
