| 254 | return techInternalWeapons::techWeapons[this->getID()]; |
| 255 | } |
| 256 | bool TechType::targetsUnit() const |
| 257 | { |
| 258 | return !!(techTypeFlags[this->getID()] & TARG_UNIT); |
| 259 | } |
| 260 | bool TechType::targetsPosition() const |
| 261 | { |
| 262 | return !!(techTypeFlags[this->getID()] & TARG_POS); |
no test coverage detected