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/Spam.hpp

38 lines
655 B
C++
Executable File

/*
* Spam.h
*
* Created on: Jan 21, 2017
* Author: nullifiedcat
*/
#pragma once
#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();
}
}
}