Skip to content
Snippets Groups Projects
locator.rs 144 B
Newer Older
Louis's avatar
Louis committed
use bevy::prelude::{Handle, TextureAtlas};

pub trait SuppliesTileAtlas {
	fn from_path(path: impl ToString) -> Option<Handle<TextureAtlas>>;
}