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/hacks/AntiCheat.hpp
2018-03-29 19:08:31 +02:00

33 lines
425 B
C++
Executable File

/*
* AntiCheat.hpp
*
* Created on: Jun 5, 2017
* Author: nullifiedcat
*/
#pragma once
#include "common.hpp"
#include "ac/aimbot.hpp"
#include "ac/antiaim.hpp"
#include "ac/bhop.hpp"
namespace hacks
{
namespace shared
{
namespace anticheat
{
void Accuse(int eid, const std::string &hack, const std::string &details);
void Init();
void CreateMove();
void ResetPlayer(int index);
void ResetEverything();
}
}
}