| 614 | this->pingMinimap(p.x, p.y); |
| 615 | } |
| 616 | void Game::vSendText(const char *format, va_list arg) |
| 617 | { |
| 618 | this->vSendTextEx(false, format, arg); |
| 619 | } |
| 620 | void Game::sendText(const char *format, ...) |
| 621 | { |
| 622 | va_list ap; |
nothing calls this directly
no test coverage detected