36 lines
971 B
C++
36 lines
971 B
C++
#pragma once
|
|
|
|
namespace Components
|
|
{
|
|
class QuickPatch : public Component
|
|
{
|
|
public:
|
|
QuickPatch();
|
|
|
|
bool unitTest() override;
|
|
|
|
static void UnlockStats();
|
|
|
|
private:
|
|
static void JavelinResetHookStub();
|
|
|
|
static Dvar::Var r_customAspectRatio;
|
|
static Game::dvar_t* Dvar_RegisterAspectRatioDvar(const char* dvarName, const char** valueList, int defaultIndex, unsigned __int16 flags, const char* description);
|
|
static void SetAspectRatioStub();
|
|
static void SetAspectRatio();
|
|
|
|
static Game::dvar_t* g_antilag;
|
|
static void ClientEventsFireWeaponStub();
|
|
static void ClientEventsFireWeaponMeleeStub();
|
|
|
|
static BOOL IsDynClassnameStub(const char* classname);
|
|
|
|
static void CL_KeyEvent_OnEscape();
|
|
static void CL_KeyEvent_ConsoleEscape_Stub();
|
|
|
|
static void R_AddImageToList_Hk(Game::XAssetHeader header, void* data);
|
|
|
|
static Game::dvar_t* Dvar_RegisterConMinicon(const char* dvarName, bool value, unsigned __int16 flags, const char* description);
|
|
};
|
|
}
|