himrin
class World(private val tiles: Array<Array<Tile>>, var width: Int, var height: Int) { init { this.width = tiles.size this.height = tiles[0].size } }