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/KillSay.hpp
2018-03-29 19:08:31 +02:00

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_ */