diff options
| author | Micha White <botahamec@outlook.com> | 2023-02-13 00:24:07 -0500 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2023-02-13 00:24:07 -0500 |
| commit | 861b467b95be55db3a42182b77dba944869bf49f (patch) | |
| tree | f58057d5ab9ad53601332981a31553b0ad05fe1b /render/src/lib.rs | |
| parent | c31d51487082c6cf243ecd10da71a15a78d41add (diff) | |
Rename the subdirectories
Diffstat (limited to 'render/src/lib.rs')
| -rw-r--r-- | render/src/lib.rs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/render/src/lib.rs b/render/src/lib.rs new file mode 100644 index 0000000..0d76cc8 --- /dev/null +++ b/render/src/lib.rs @@ -0,0 +1,21 @@ +#![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::*; +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; |
