mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Light cleanup. Hook RSON loading for debugging and improvements for console overlay. TODO: fix thread lock on concomand execute from Present(..)
18 lines
568 B
C
18 lines
568 B
C
#pragma once
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Initialization
|
|
void SetupConsole();
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Hooks
|
|
bool Hook_ConVar_IsFlagSet(int** cvar, int flag);
|
|
bool Hook_ConCommand_IsFlagSet(int* cmd, int flag);
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Globals
|
|
inline bool g_bDebugConsole = false;
|
|
inline bool g_bReturnAllFalse = false;
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|