Trait prototty::ViewGrid [] [src]

pub trait ViewGrid {
    type Cell: ViewCell;
    fn get_mut(&mut self, coord: Coord, depth: i32) -> Option<&mut Self::Cell>;
}

A grid of cells

Associated Types

Required Methods

Implementors