diff options
| author | Micha White <botahamec@outlook.com> | 2022-11-19 12:23:15 -0500 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2022-11-19 12:23:15 -0500 |
| commit | 20b0a802225da2668263c93b492a49d25714598e (patch) | |
| tree | 19406980382527ff59979a36a83bea3e8447a3f3 /alligator_resources/src/lib.rs | |
| parent | d59c0dd1fa4ab3809f4ae572bc68f4c00e2a6686 (diff) | |
Created TextureRef
Diffstat (limited to 'alligator_resources/src/lib.rs')
| -rw-r--r-- | alligator_resources/src/lib.rs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/alligator_resources/src/lib.rs b/alligator_resources/src/lib.rs index b85eab1..0f7b544 100644 --- a/alligator_resources/src/lib.rs +++ b/alligator_resources/src/lib.rs @@ -5,4 +5,12 @@ pub mod texture; -struct ResourceManager {} +#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] +pub enum Priority { + Unnecessary, + Possible(u8), + Eventual(u8), + Urgent, +} + +pub struct ResourceManager {} |
