Exemplo n.º 1
0
 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();
 }
Exemplo n.º 2
0
 public void AddLayer(Tile[] layer)
 {
     layers.Add(layer);
 }