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

33 lines
473 B
C++
Executable File

/*
* AutoReflect.h
*
* Created on: Nov 18, 2016
* Author: nullifiedcat
*/
#ifndef HACKS_AUTOREFLECT_HPP_
#define HACKS_AUTOREFLECT_HPP_
#include "common.hpp"
namespace hacks
{
namespace tf
{
namespace autoreflect
{
extern CatVar enabled;
extern CatVar idle_only;
extern CatVar stickies;
extern CatVar max_distance;
void CreateMove();
bool ShouldReflect(CachedEntity *ent);
bool IsEntStickyBomb(CachedEntity *ent);
}
}
}
#endif /* HACKS_AUTOREFLECT_HPP_ */