2020-03-11 00:58:50 +00:00
|
|
|
#include "antibot_data.h"
|
|
|
|
|
2020-05-15 16:29:34 +00:00
|
|
|
static CAntibotData *g_pData;
|
2020-03-11 00:58:50 +00:00
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
|
2020-05-15 22:39:17 +00:00
|
|
|
int AntibotAbiVersion()
|
|
|
|
{
|
|
|
|
return ANTIBOT_ABI_VERSION;
|
|
|
|
}
|
2020-05-15 16:29:34 +00:00
|
|
|
void AntibotInit(CAntibotData *pData)
|
2020-03-11 00:58:50 +00:00
|
|
|
{
|
2020-05-15 16:29:34 +00:00
|
|
|
g_pData = pData;
|
2020-05-15 22:39:17 +00:00
|
|
|
g_pData->m_pfnLog("null antibot initialized", g_pData->m_pUser);
|
2020-03-11 00:58:50 +00:00
|
|
|
}
|
2020-05-13 20:27:49 +00:00
|
|
|
void AntibotRoundStart(CAntibotRoundData *pRoundData) { };
|
|
|
|
void AntibotRoundEnd(void) { };
|
|
|
|
void AntibotUpdateData(void) { }
|
2020-05-15 16:29:34 +00:00
|
|
|
void AntibotDestroy(void) { g_pData = 0; }
|
2020-05-13 20:27:49 +00:00
|
|
|
void AntibotDump(void)
|
2020-03-11 00:58:50 +00:00
|
|
|
{
|
2020-05-15 22:39:17 +00:00
|
|
|
g_pData->m_pfnLog("null antibot", g_pData->m_pUser);
|
2020-03-11 00:58:50 +00:00
|
|
|
}
|
|
|
|
void AntibotOnPlayerInit(int ClientID) { (void)ClientID; }
|
|
|
|
void AntibotOnPlayerDestroy(int ClientID) { (void)ClientID; }
|
|
|
|
void AntibotOnSpawn(int ClientID) { (void)ClientID; }
|
|
|
|
void AntibotOnHammerFireReloading(int ClientID) { (void)ClientID; }
|
|
|
|
void AntibotOnHammerFire(int ClientID) { (void)ClientID; }
|
|
|
|
void AntibotOnHammerHit(int ClientID) { (void)ClientID; }
|
|
|
|
void AntibotOnDirectInput(int ClientID) { (void)ClientID; }
|
2020-05-15 16:29:34 +00:00
|
|
|
void AntibotOnCharacterTick(int ClientID) { (void)ClientID; }
|
2020-03-11 00:58:50 +00:00
|
|
|
void AntibotOnHookAttach(int ClientID, bool Player) { (void)ClientID; (void)Player; }
|
2020-05-15 16:29:34 +00:00
|
|
|
void AntibotOnEngineTick(void) { }
|
2020-07-01 12:11:37 +00:00
|
|
|
void AntibotOnEngineClientJoin(int ClientID, bool Sixup) { (void)ClientID; (void)Sixup; }
|
2020-05-13 20:27:49 +00:00
|
|
|
void AntibotOnEngineClientDrop(int ClientID, const char *pReason) { (void)ClientID; (void)pReason; }
|
|
|
|
void AntibotOnEngineClientMessage(int ClientID, const void *pData, int Size, int Flags) { (void)ClientID; (void)pData; (void)Size; (void)Flags; }
|
2020-03-11 00:58:50 +00:00
|
|
|
|
|
|
|
}
|