From 20b0a802225da2668263c93b492a49d25714598e Mon Sep 17 00:00:00 2001 From: Micha White Date: Sat, 19 Nov 2022 12:23:15 -0500 Subject: Created TextureRef --- alligator_resources/src/lib.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'alligator_resources/src/lib.rs') 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 {} -- cgit v1.2.3