MCPcopy Create free account
hub / github.com/bwapi/bwapi / drawText

Method drawText

bwapi/BWAPILIB/Source/Game.cpp:743–749  ·  view source on GitHub ↗

------------------------------------------ DRAW TEXT ----------------------------------------------

Source from the content-addressed store, hash-verified

741 }
742 //------------------------------------------ DRAW TEXT ----------------------------------------------
743 void Game::drawText(CoordinateType::Enum ctype, int x, int y, const char *format, ...)
744 {
745 va_list ap;
746 va_start(ap,format);
747 this->vDrawText(ctype, x, y, format, ap);
748 va_end(ap);
749 }
750 void Game::drawTextMap(int x, int y, const char *format, ...)
751 {
752 va_list ap;

Callers

nothing calls this directly

Calls 1

vDrawTextMethod · 0.45

Tested by

no test coverage detected