| 18 | return (this->movementFlags & flags) != 0; |
| 19 | } |
| 20 | bool CUnit::statusFlag(u32 flags) const |
| 21 | { |
| 22 | return (this->statusFlags & flags) != 0; |
| 23 | } |
| 24 | const CUnit* CUnit::getDamageDealer() const |
| 25 | { |
| 26 | if (this->subUnit != nullptr) return this->subUnit; |
no outgoing calls
no test coverage detected