30 lines
361 B
C++
30 lines
361 B
C++
/*
|
|
* sconvars.hpp
|
|
*
|
|
* Created on: May 1, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "common.hpp"
|
|
|
|
/*
|
|
* HECK off F1ssi0N
|
|
* I won't make NETWORK HOOKS to deal with this SHIT
|
|
*/
|
|
|
|
namespace sconvar
|
|
{
|
|
|
|
class SpoofedConVar
|
|
{
|
|
public:
|
|
SpoofedConVar(ConVar *var);
|
|
|
|
public:
|
|
ConVar *original;
|
|
ConVar *spoof;
|
|
};
|
|
} // namespace sconvar
|