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-04-27 23:56:09 +03:00

31 lines
384 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();
void init();
void level_init();
#if ENABLE_IPC
void update_ipc_data(ipc::user_data_s &data);
#endif
}
}
}