| 2 | using namespace std; |
| 3 | using namespace BWAPI; |
| 4 | void ExistenceTest::onStart() |
| 5 | { |
| 6 | BWAssert(Broodwar->isMultiplayer()==false); |
| 7 | BWAssert(Broodwar->isReplay()==false); |
| 8 | Broodwar->enableFlag(Flag::UserInput); |
| 9 | Broodwar->sendText("show me the money"); |
| 10 | } |
| 11 | void ExistenceTest::onFrame() |
| 12 | { |
| 13 | for (Unit u : Broodwar->getAllUnits()) |
nothing calls this directly
no test coverage detected