summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2022-10-20 20:39:44 -0400
committerMicha White <botahamec@outlook.com>2022-10-20 20:39:44 -0400
commit93347346e8bd8f7412ae03a0858dd307a1df2e0d (patch)
tree17805956857c76b5fed3f47a821fcdf6141cf7a6 /src/lib.rs
parente337741969160603f06a7f2b30cda375eeef99fb (diff)
Moved files into workspace
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/lib.rs b/src/lib.rs
deleted file mode 100644
index f5403f2..0000000
--- a/src/lib.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-#![feature(let_else)]
-#![feature(nonzero_min_max)]
-#![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::RenderWindowConfig;
-pub use instance::Instance;
-pub(crate) use instance::InstanceBuffer;
-pub use renderer::Renderer;
-pub use texture::ImageFormat;
-pub(crate) use texture::TextureAtlas;
-pub(crate) use vertex::Vertex;