diff options
| author | Micha White <botahamec@outlook.com> | 2022-09-18 15:30:56 -0400 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2022-09-18 15:30:56 -0400 |
| commit | d613b20803f41eeb4f6ae27003d5bfa371502930 (patch) | |
| tree | 233f1906d0150b4fce80af3fb63dceeb70f308da /src/lib.rs | |
| parent | ffee09ada476b3a350f331718d60fa806b564bad (diff) | |
Created a vertex buffer
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6,6 +6,8 @@ pub mod config; pub mod renderer; +mod vertex; pub use config::RenderWindowConfig; pub use renderer::Renderer; +pub(crate) use vertex::Vertex; |
