コード例 #1
0
ファイル: Pitch.cs プロジェクト: Damien-Jakob/BBL_AI
 public Pitch()
 {
     for (int x = 0; x < Width; x++)
     {
         for (int y = 0; y < Height; y++)
         {
             locations[x, y] = new PitchLocation(x, y, this);
         }
     }
 }
コード例 #2
0
    public void Initialize(PitchLocation pitchLocation)
    {
        this.pitchLocation = pitchLocation;

        AddTile();
    }