35 lines
554 B
C++
Executable File
35 lines
554 B
C++
Executable File
/*
|
|
* LagExploit.hpp
|
|
*
|
|
* Created on: May 7, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#ifndef HACKS_LAGEXPLOIT_HPP_
|
|
#define HACKS_LAGEXPLOIT_HPP_
|
|
|
|
#include "common.hpp"
|
|
|
|
// Idea from UC (instant bomb defuse thread)
|
|
|
|
namespace hacks
|
|
{
|
|
namespace shared
|
|
{
|
|
namespace lagexploit
|
|
{
|
|
extern const model_t *point;
|
|
extern const model_t *point2;
|
|
extern const model_t *point3;
|
|
extern const model_t *point4;
|
|
extern const model_t *point5;
|
|
void CreateMove();
|
|
void Draw();
|
|
void AddExploitTicks(int ticks);
|
|
bool ExploitActive();
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* HACKS_LAGEXPLOIT_HPP_ */
|