public World(int width, int height, Tile[] tiles) { this.tiles = tiles; this.width = width; this.height = height; this.teleporters = new List<Teleporter>(); this.playerStartPosition = new Vector2D(); }
public void AddLayer(Tile[] layer) { layers.Add(layer); }