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 /resources/src/lib.rs | |
| parent | c31d51487082c6cf243ecd10da71a15a78d41add (diff) | |
Rename the subdirectories
Diffstat (limited to 'resources/src/lib.rs')
| -rw-r--r-- | resources/src/lib.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/resources/src/lib.rs b/resources/src/lib.rs new file mode 100644 index 0000000..9cbbba0 --- /dev/null +++ b/resources/src/lib.rs @@ -0,0 +1,13 @@ +#![feature(new_uninit, let_chains)] +#![warn(clippy::nursery, clippy::pedantic)] +#![allow(clippy::module_name_repetitions)] + +pub mod texture; + +#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] +pub enum Priority { + Unnecessary, + Possible(u8), + Eventual(u8), + Urgent, +} |
