use bevy::prelude::{Handle, TextureAtlas};

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