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

28 lines
361 B
C++
Executable File

/*
* CatBot.hpp
*
* Created on: Dec 30, 2017
* Author: nullifiedcat
*/
#pragma once
#include "common.hpp"
namespace hacks
{
namespace shared
{
namespace catbot
{
bool is_a_catbot(unsigned steamID);
bool should_ignore_player(CachedEntity *player);
void update_ipc_data(ipc::user_data_s &data);
void update();
void init();
void level_init();
}
}
}