pub trait TileProvider {
    fn get_tile(&self, index: TileIndex) -> Option<&Surface<'_>>;
}

Required Methods

Implementors