35 lines
719 B
C++
35 lines
719 B
C++
/*
|
|
* Spam.h
|
|
*
|
|
* Created on: Jan 21, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#ifndef HACKS_SPAM_HPP_
|
|
#define HACKS_SPAM_HPP_
|
|
|
|
#include "common.hpp"
|
|
|
|
class CatCommand;
|
|
|
|
namespace hacks { namespace shared { namespace spam {
|
|
|
|
extern const std::vector<std::string> builtin_default;
|
|
extern const std::vector<std::string> builtin_lennyfaces;
|
|
extern const std::vector<std::string> builtin_blanks;
|
|
extern const std::vector<std::string> builtin_nonecore;
|
|
extern const std::vector<std::string> builtin_lmaobox;
|
|
extern const std::vector<std::string> builtin_lithium;
|
|
|
|
extern CatVar spam_source;
|
|
extern CatVar filename;
|
|
extern CatCommand reload;
|
|
|
|
void Init();
|
|
void CreateMove();
|
|
void Reload();
|
|
|
|
}}}
|
|
|
|
#endif /* HACKS_SPAM_HPP_ */
|