pub trait HasTile {
    fn has_tile(&self, coords: WorldTileCoords, world: &World) -> bool;

    fn get_available_parent(
        &self,
        coords: WorldTileCoords,
        world: &World
    ) -> Option<WorldTileCoords> { ... } fn get_available_children(
        &self,
        coords: WorldTileCoords,
        world: &World,
        search_depth: usize
    ) -> Option<Vec<WorldTileCoords>> { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors