Exemplo n.º 1
0
 public Pitch()
 {
     for (int x = 0; x < Width; x++)
     {
         for (int y = 0; y < Height; y++)
         {
             locations[x, y] = new PitchLocation(x, y, this);
         }
     }
 }
Exemplo n.º 2
0
    public void Initialize(PitchLocation pitchLocation)
    {
        this.pitchLocation = pitchLocation;

        AddTile();
    }