| 9 | Attack_Prepare quick_attack_impl(Enum::QUICK_ATTACK); |
| 10 | |
| 11 | bool Attack_Prepare::execute(aithread &thread) const |
| 12 | { |
| 13 | // Execute |
| 14 | // AI_AttackManager(thisLocation, 1, 0); |
| 15 | |
| 16 | if ( this->getOpcode() == Enum::QUICK_ATTACK ) |
| 17 | MainController.dwAttackTime = Broodwar->elapsedTime() - 175; |
| 18 | |
| 19 | // Save debug info and return |
| 20 | thread.saveDebug(Text::Red, this->getOpcode()); |
| 21 | return true; |
| 22 | } |
nothing calls this directly
no test coverage detected