getTile method

T getTile(
  1. Point<int> point
)

Get the tile at the given point.

Implementation

T getTile(final Point<int> point) => makeTile(
      point,
      tileMap.getTileFlags(point),
    );