| 34 | pAntibot->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "antibot", pMessage); |
| 35 | } |
| 36 | void CAntibot::Report(int ClientId, const char *pMessage, void *pUser) |
| 37 | { |
| 38 | char aBuf[256]; |
| 39 | str_format(aBuf, sizeof(aBuf), "%d: %s", ClientId, pMessage); |
| 40 | Log(aBuf, pUser); |
| 41 | } |
| 42 | void CAntibot::Send(int ClientId, const void *pData, int Size, int Flags, void *pUser) |
| 43 | { |
| 44 | CAntibot *pAntibot = (CAntibot *)pUser; |
nothing calls this directly
no test coverage detected