summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2022-09-18 15:30:56 -0400
committerMicha White <botahamec@outlook.com>2022-09-18 15:30:56 -0400
commitd613b20803f41eeb4f6ae27003d5bfa371502930 (patch)
tree233f1906d0150b4fce80af3fb63dceeb70f308da /src/lib.rs
parentffee09ada476b3a350f331718d60fa806b564bad (diff)
Created a vertex buffer
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 1bdc5f6..fbc517b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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;