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

31 lines
400 B
C++
Executable File

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