| 33 | return Broodwar->getForce(self->force); |
| 34 | } |
| 35 | bool PlayerImpl::isAlly(const Player player) const |
| 36 | { |
| 37 | if ( !player ) |
| 38 | return false; |
| 39 | return self->isAlly[player->getID()]; |
| 40 | } |
| 41 | bool PlayerImpl::isEnemy(const Player player) const |
| 42 | { |
| 43 | if ( !player ) |
no test coverage detected