1 2 3 4 5 6 7 8 9 10 11
// Represents a character in the terminal #[derive(Clone, Copy, PartialEq, Eq)] pub struct Cell { pub symbol: char, } impl Default for Cell { fn default() -> Self { Cell { symbol: ' ' } } }