iw4x-client/src/Components/Modules/AntiCheat.hpp
2016-03-01 13:37:51 +01:00

24 lines
402 B
C++

namespace Components
{
class AntiCheat : public Component
{
public:
AntiCheat();
~AntiCheat();
const char* GetName() { return "Component"; }; // Wrong name :P
static void CrashClient();
static void EmptyHash();
private:
static int LastCheck;
static std::string Hash;
static void Frame();
static void PerformCheck();
static void PatchWinAPI();
static void NullSub();
};
}