commit 0d669f554fa0cd879b02112f192d95aa1ea561be Author: wullie Date: Mon Nov 3 22:47:27 2025 +0000 Upload files to "include" diff --git a/include/discordBot.h b/include/discordBot.h new file mode 100644 index 0000000..7d7eff1 --- /dev/null +++ b/include/discordBot.h @@ -0,0 +1,6 @@ +#ifndef DISCORDBOT_H +#define DISCORDBOT_H + +void discordBotRunner(void); + +#endif diff --git a/include/godsBot.h b/include/godsBot.h new file mode 100644 index 0000000..648447f --- /dev/null +++ b/include/godsBot.h @@ -0,0 +1,17 @@ +#ifndef GODSBOT_H +#define GODSBOT_H + +// global installs +#include +#include +#include +#include +#include +#include + +// local libs +#include "discordBot.h" +#include "wrenVM.h" +#include "messageParser.h" + +#endif diff --git a/include/messageParser.h b/include/messageParser.h new file mode 100644 index 0000000..52715c9 --- /dev/null +++ b/include/messageParser.h @@ -0,0 +1,6 @@ +#ifndef MESSAGE_PARSER_H +#define MESSAGE_PARSER_H + +bool parseMessage(const struct discord_message *msg); + +#endif diff --git a/include/wrenVM.h b/include/wrenVM.h new file mode 100644 index 0000000..0fc4d95 --- /dev/null +++ b/include/wrenVM.h @@ -0,0 +1,14 @@ +#ifndef WRENVM_h +#define WRENVM_h + +// creates the vm +void WrenVmInit(void); + +// runs commands in wren +char* WrenCommandHandler(const char* cmd, const char* args); + +// frees the vm on end + +void WrenVmFree(void); + +#endif