--------------------------------------------- ATTACK MOVE ------------------------------------------------
| 105 | } |
| 106 | //--------------------------------------------- ATTACK MOVE ------------------------------------------------ |
| 107 | bool Unitset::attack(Position target, bool shiftQueueCommand) const |
| 108 | { |
| 109 | return this->issueCommand(UnitCommand::attack(nullptr, target, shiftQueueCommand)); |
| 110 | } |
| 111 | bool Unitset::attack(Unit target, bool shiftQueueCommand) const |
| 112 | { |
| 113 | return this->issueCommand(UnitCommand::attack(nullptr, target, shiftQueueCommand)); |
nothing calls this directly
no test coverage detected