Exemplo n.º 1
0
 // inicializace polí
 private void FillFields()
 {
     for (int x = 0; x < width; x++) {
         for (int y = 0; y < height; y++) {
             fields[x, y] = new Field();
         }
     }
 }