use crate::glyph::Glyph; #[derive(Clone, Copy, Debug)] pub struct Sprite { pub glyph: Glyph, pub x: i32, pub y: i32, pub layer: u8, pub bank_id: u8, pub active: bool, pub flip_x: bool, pub flip_y: bool, pub priority: u8, }