feat(drawable): set sky

This commit is contained in:
Nova
2022-09-26 00:39:56 -04:00
parent bbd3159a62
commit a80ddf501d
4 changed files with 74 additions and 43 deletions

View File

@@ -2,7 +2,7 @@ use std::path::PathBuf;
pub type ResourceID = Box<dyn ResourceIDTrait + Send + Sync>;
pub trait ResourceIDTrait {
pub trait ResourceIDTrait: Send + Sync {
fn get_file(&self, prefixes: &[PathBuf]) -> Option<PathBuf>;
}