summaryrefslogtreecommitdiff
path: root/render/src/lib.rs
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2024-08-15 20:16:32 -0400
committerMicha White <botahamec@outlook.com>2024-08-15 20:16:32 -0400
commitdb9aa9f1bf49e8bede384b9ceb1e1fb82b522799 (patch)
tree0d60727acf481f59b42ef0f74ed07c16ec562bcf /render/src/lib.rs
parentf8a80039c74332e2101a177ef3fde31ef2077224 (diff)
Delete stuff
Diffstat (limited to 'render/src/lib.rs')
-rw-r--r--render/src/lib.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/render/src/lib.rs b/render/src/lib.rs
deleted file mode 100644
index 6f96fc2..0000000
--- a/render/src/lib.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-#![feature(type_alias_impl_trait)]
-#![warn(clippy::pedantic)]
-#![warn(clippy::nursery)]
-#![allow(clippy::module_name_repetitions)]
-
-mod camera;
-pub mod config;
-pub mod instance;
-pub mod renderer;
-mod texture;
-mod vertex;
-
-pub(crate) use camera::Camera;
-pub use config::*;
-pub use instance::Instance;
-pub(crate) use instance::InstanceBuffer;
-pub use instance::InstanceId;
-pub use renderer::Renderer;
-pub(crate) use texture::TextureAtlas;
-pub(crate) use vertex::Vertex;