| 4 | std::map<Unit ,Order> lastOrder; |
| 5 | std::map<Unit ,list<Order> > lastDistinctOrders; |
| 6 | void DefaultTestModule::onStart() |
| 7 | { |
| 8 | BWAssert(Broodwar->isMultiplayer()==false); |
| 9 | BWAssert(Broodwar->isReplay()==false); |
| 10 | Broodwar->enableFlag(Flag::CompleteMapInformation); |
| 11 | Broodwar->enableFlag(Flag::UserInput); |
| 12 | Broodwar->sendText("show me the money"); |
| 13 | Broodwar->sendText("operation cwal"); |
| 14 | } |
| 15 | void DefaultTestModule::onFrame() |
| 16 | { |
| 17 | if (Broodwar->getFrameCount()==0) return; |
nothing calls this directly
no test coverage detected