summaryrefslogtreecommitdiff
path: root/alligator_resources/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'alligator_resources/src/lib.rs')
-rw-r--r--alligator_resources/src/lib.rs10
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 {}