| 9 | Broodwar->sendText("show me the money"); |
| 10 | } |
| 11 | void ExistenceTest::onFrame() |
| 12 | { |
| 13 | for (Unit u : Broodwar->getAllUnits()) |
| 14 | { |
| 15 | Broodwar->drawTextMap(u->getPosition(),"%x",u->getID()); |
| 16 | } |
| 17 | } |
| 18 | void ExistenceTest::onUnitCreate(Unit unit) |
| 19 | { |
| 20 | Broodwar << "Unit " << unit->getID() << " [" << unit->getType() << "] has been created" << std::endl; |
nothing calls this directly
no test coverage detected