diff options
| author | Micha White <botahamec@outlook.com> | 2022-10-20 20:39:44 -0400 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2022-10-20 20:39:44 -0400 |
| commit | 93347346e8bd8f7412ae03a0858dd307a1df2e0d (patch) | |
| tree | 17805956857c76b5fed3f47a821fcdf6141cf7a6 /alligator_render/src/lib.rs | |
| parent | e337741969160603f06a7f2b30cda375eeef99fb (diff) | |
Moved files into workspace
Diffstat (limited to 'alligator_render/src/lib.rs')
| -rw-r--r-- | alligator_render/src/lib.rs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/alligator_render/src/lib.rs b/alligator_render/src/lib.rs new file mode 100644 index 0000000..f5403f2 --- /dev/null +++ b/alligator_render/src/lib.rs @@ -0,0 +1,22 @@ +#![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; |
