pub trait TextureGetter {
// Required methods
fn texture(&self) -> &Texture;
fn texture_mut(&mut self) -> &mut Texture;
}pub trait TextureGetter {
// Required methods
fn texture(&self) -> &Texture;
fn texture_mut(&mut self) -> &mut Texture;
}