public bool compareHeavyWeapons(Soldier other) { return(this.HeavyWeapons < other.HeavyWeapons); }
public bool compareCloseCombat(Soldier other) { return(this.CloseCombat < other.CloseCombat); }
public bool compareHP(Soldier other) { return(this.Hp < other.Hp); }
public bool compareHighExplosives(Soldier other) { return(this.HighExplosives < other.HighExplosives); }
public bool compareSniperRifles(Soldier other) { return(this.SniperRifles < other.SniperRifles); }
public bool compareAssaultWeapons(Soldier other) { return(this.AssaultWeapons < other.AssaultWeapons); }