10 lines
173 B
Rust

use crate::glyph::Glyph;
#[derive(Clone, Copy, Debug, Default)]
pub struct Tile {
pub glyph: Glyph,
pub active: bool,
pub flip_x: bool,
pub flip_y: bool,
}