14 lines
171 B
C++
14 lines
171 B
C++
#ifndef BOT_RULES_H
|
|
#define BOT_RULES_H
|
|
|
|
#include <dpp/dpp.h>
|
|
|
|
|
|
class rules {
|
|
public:
|
|
static void execute(const dpp::slashcommand_t &event);
|
|
};
|
|
|
|
|
|
#endif //BOT_RULES_H
|