40 lines
663 B
C++
Executable File
40 lines
663 B
C++
Executable File
/*
|
|
* KillSay.h
|
|
*
|
|
* Created on: Jan 19, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#ifndef HACKS_KILLSAY_HPP_
|
|
#define HACKS_KILLSAY_HPP_
|
|
|
|
#include "common.hpp"
|
|
|
|
class CatCommand;
|
|
|
|
class KillSayEventListener : public IGameEventListener2
|
|
{
|
|
virtual void FireGameEvent(IGameEvent *event);
|
|
};
|
|
|
|
namespace hacks
|
|
{
|
|
namespace shared
|
|
{
|
|
namespace killsay
|
|
{
|
|
|
|
void Init();
|
|
void Shutdown();
|
|
void Reload();
|
|
std::string ComposeKillSay(IGameEvent *event);
|
|
|
|
extern const std::vector<std::string> builtin_default;
|
|
extern const std::vector<std::string> builtin_nonecore_offensive;
|
|
extern const std::vector<std::string> builtin_nonecore_mlg;
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* HACKS_KILLSAY_HPP_ */
|