From a865aeba4ea27c0328058bef707feaa79e89771d Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 29 Oct 2023 16:34:06 +0100 Subject: [PATCH] Created the rules.h --- src/commands/rules.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/commands/rules.h diff --git a/src/commands/rules.h b/src/commands/rules.h new file mode 100644 index 0000000..8639d06 --- /dev/null +++ b/src/commands/rules.h @@ -0,0 +1,13 @@ +#ifndef BOT_RULES_H +#define BOT_RULES_H + +#include + + +class rules { +public: + static void execute(dpp::cluster &bot, const dpp::slashcommand_t &event); +}; + + +#endif //BOT_RULES_H