Пример #1
0
 public void DespawnAllBlocks()
 {
     for (byte width = 0; width < HexGrid.Width; width++)
     {
         for (byte height = 0; height < HexGrid.Height; height++)
         {
             blockSpawner.DespawnBlock(width, height);
         }
     }
 }