31 lines
419 B
C++
Executable File
31 lines
419 B
C++
Executable File
/*
|
|
* UberSpam.hpp
|
|
*
|
|
* Created on: May 3, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#ifndef HACKS_UBERSPAM_HPP_
|
|
#define HACKS_UBERSPAM_HPP_
|
|
|
|
#include "common.hpp"
|
|
|
|
namespace hacks
|
|
{
|
|
namespace tf
|
|
{
|
|
namespace uberspam
|
|
{
|
|
|
|
void CreateMove();
|
|
|
|
// Ready, Used, Ended, %...
|
|
|
|
extern const std::vector<std::string> builtin_cathook;
|
|
extern const std::vector<std::string> builtin_nonecore;
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* HACKS_UBERSPAM_HPP_ */
|