From 232a8d35790e99e01c15cfbd0ce6b5bc779012b2 Mon Sep 17 00:00:00 2001 From: 0TheSpy <5511c282@opayq.com> Date: Thu, 8 Jul 2021 21:58:23 +0300 Subject: [PATCH] Update Interfaces.hpp --- SpyCustom/Interfaces.hpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/SpyCustom/Interfaces.hpp b/SpyCustom/Interfaces.hpp index 0f890dd..e55bea9 100644 --- a/SpyCustom/Interfaces.hpp +++ b/SpyCustom/Interfaces.hpp @@ -2,7 +2,7 @@ #define INTERFACES #pragma once -//#define DEBUG +#define DEBUG #define CLIENT_DLL @@ -323,5 +323,11 @@ enum Sequence }; +void SetValueUnrestricted(const char* cvar, float value); +void SetIntUnrestricted(const char* cvar, int value); +void SetFloatUnrestricted(const char* cvar, float value); +float GetVisibleFloat(const char* cvar); +const char* GetVisibleValue(const char* cvar); + #endif