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

19 lines
293 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:
static std::string Hash;
static void Frame();
};
}