Update Interfaces.hpp

This commit is contained in:
0TheSpy
2022-11-09 09:47:44 +03:00
committed by GitHub
parent 3967660117
commit 0502e0410d

View File

@ -2,7 +2,7 @@
#define INTERFACES #define INTERFACES
#pragma once #pragma once
//#define DEBUG #define DEBUG
#ifdef DEBUG #ifdef DEBUG
#define printfdbg printf #define printfdbg printf
@ -63,6 +63,10 @@
#include "sdk/vpkparser.h" #include "sdk/vpkparser.h"
#include "sdk/itempents.h" #include "sdk/itempents.h"
#include "sdk/c_te_legacytempents.h" #include "sdk/c_te_legacytempents.h"
#include "sdk/iglobalvarsbase.h"
#include "sdk/iprediction.h"
#include "sdk/inetmessage.h"
#include "sdk/ClientNetMessage.h"
#include "XorStr.hpp" #include "XorStr.hpp"
@ -138,6 +142,8 @@ public:
IInputSystem* g_pInputSystem = nullptr; IInputSystem* g_pInputSystem = nullptr;
ITempEnts* g_pTempEnts = nullptr; ITempEnts* g_pTempEnts = nullptr;
DWORD ParticleCollectionSimulateAdr = 0; DWORD ParticleCollectionSimulateAdr = 0;
CPrediction* g_pPrediction = nullptr;
}; };
extern IF iff; extern IF iff;
@ -351,7 +357,8 @@ static __declspec(naked) void __cdecl Invoke_NET_SetConVar(void* pfn, const char
} }
} }
void NET_SetConVar(const char* name, const char* value); void NETSetConVar(const char* name, const char* value);
void SetName(const char* pszName); void SetName(const char* pszName);
#endif #endif