iw4x-client/src/Components/Modules/AntiCheat.hpp

23 lines
373 B
C++
Raw Normal View History

2016-02-29 08:47:21 -05:00
namespace Components
{
class AntiCheat : public Component
{
public:
AntiCheat();
~AntiCheat();
const char* GetName() { return "Component"; }; // Wrong name :P
static void CrashClient();
static void EmptyHash();
private:
2016-02-29 11:30:04 -05:00
static int LastCheck;
2016-02-29 08:47:21 -05:00
static std::string Hash;
static void Frame();
2016-02-29 14:38:14 -05:00
static void PerformCheck();
static void NullSub();
2016-02-29 08:47:21 -05:00
};
}