| 579 | return !!(wpnFlags[this->getID()] & TARG_AIR); |
| 580 | } |
| 581 | bool WeaponType::targetsGround() const |
| 582 | { |
| 583 | return !!(wpnFlags[this->getID()] & TARG_GROUND); |
| 584 | } |
| 585 | bool WeaponType::targetsMechanical() const |
| 586 | { |
| 587 | return !!(wpnFlags[this->getID()] & TARG_MECH); |
no test coverage detected