This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
cathook/include/sconvars.hpp
2017-12-02 17:47:47 +03:00

33 lines
399 B
C++

/*
* sconvars.hpp
*
* Created on: May 1, 2017
* Author: nullifiedcat
*/
#ifndef SCONVARS_HPP_
#define SCONVARS_HPP_
#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;
};
}
#endif /* SCONVARS_HPP_ */