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