diff options
| author | Micha White <botahamec@outlook.com> | 2022-10-01 17:52:50 -0400 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2022-10-01 17:52:50 -0400 |
| commit | 5d299af0e592c76c62c6347152eae2257a95c71f (patch) | |
| tree | 55d88095dabe0b9106ccef9d1f765ed10a603aca /src/lib.rs | |
| parent | ff8b849957ed63e6a19522597903f6bf55788426 (diff) | |
Quick and dirty texture atlases
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,5 +1,6 @@ #![feature(let_else)] #![feature(nonzero_min_max)] +#![feature(type_alias_impl_trait)] #![warn(clippy::pedantic)] #![warn(clippy::nursery)] #![allow(clippy::module_name_repetitions)] @@ -8,6 +9,7 @@ pub mod camera; pub mod config; pub mod instance; pub mod renderer; +mod texture; mod vertex; pub(crate) use camera::Camera; |
