Ejemplo n.º 1
0
 public BuildDecision(BuildDecision other)
 {
     towerType = other.towerType;
     gridXCoord = other.gridXCoord;
     gridZCoord = other.gridZCoord;
 }
Ejemplo n.º 2
0
 public bool Equals(BuildDecision other)
 {
     return towerType == other.towerType &&
            gridXCoord == other.gridXCoord &&
            gridZCoord == other.gridZCoord;
 }