Esempio n. 1
0
 public bool compareHeavyWeapons(Soldier other)
 {
     return(this.HeavyWeapons < other.HeavyWeapons);
 }
Esempio n. 2
0
 public bool compareCloseCombat(Soldier other)
 {
     return(this.CloseCombat < other.CloseCombat);
 }
Esempio n. 3
0
 public bool compareHP(Soldier other)
 {
     return(this.Hp < other.Hp);
 }
Esempio n. 4
0
 public bool compareHighExplosives(Soldier other)
 {
     return(this.HighExplosives < other.HighExplosives);
 }
Esempio n. 5
0
 public bool compareSniperRifles(Soldier other)
 {
     return(this.SniperRifles < other.SniperRifles);
 }
Esempio n. 6
0
 public bool compareAssaultWeapons(Soldier other)
 {
     return(this.AssaultWeapons < other.AssaultWeapons);
 }