mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fixed several bugs in the GameConsole class caused by a single variable that shouldn't be initialized where it was. Fixed GameConsole glitch on right mouse click event
15 lines
410 B
C
15 lines
410 B
C
#pragma once
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Initialization
|
|
void InstallENHooks();
|
|
void RemoveENHooks();
|
|
void ToggleDevCommands();
|
|
void ToggleNetHooks();
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Globals
|
|
inline bool g_bDebugLoading = false;
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|