TileMap<T extends TileBase> constructor
Create a TileMap with the given width
and height
, in tiles, filled
with the given initialValue
.
Implementation
TileMap(int width, int height, T initialValue)
: _tiles = Array2(width, height, initialValue);