get method

T get(
  1. int x,
  2. int y
)

Get the tile at column x row y

Implementation

T get(int x, int y) => _tiles.get(x, y);