28 lines
377 B
C++
Executable File
28 lines
377 B
C++
Executable File
/*
|
|
* LagExploit.hpp
|
|
*
|
|
* Created on: May 7, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "common.hpp"
|
|
|
|
// Idea from UC (instant bomb defuse thread)
|
|
|
|
namespace hacks
|
|
{
|
|
namespace shared
|
|
{
|
|
namespace lagexploit
|
|
{
|
|
extern const model_t *pointarr[5];
|
|
extern bool bcalled;
|
|
void CreateMove();
|
|
void Draw();
|
|
void AddExploitTicks(int ticks);
|
|
bool ExploitActive();
|
|
}
|
|
}
|
|
} |