------------------------------------------ DRAW TEXT ----------------------------------------------
| 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; |