Update Interfaces.hpp

This commit is contained in:
0TheSpy 2021-07-08 21:58:23 +03:00 committed by GitHub
parent d470ae4320
commit 232a8d3579
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
#define INTERFACES #define INTERFACES
#pragma once #pragma once
//#define DEBUG #define DEBUG
#define CLIENT_DLL #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 #endif