From 0d669f554fa0cd879b02112f192d95aa1ea561be Mon Sep 17 00:00:00 2001 From: wullie Date: Mon, 3 Nov 2025 22:47:27 +0000 Subject: [PATCH] Upload files to "include" --- include/discordBot.h | 6 ++++++ include/godsBot.h | 17 +++++++++++++++++ include/messageParser.h | 6 ++++++ include/wrenVM.h | 14 ++++++++++++++ 4 files changed, 43 insertions(+) create mode 100644 include/discordBot.h create mode 100644 include/godsBot.h create mode 100644 include/messageParser.h create mode 100644 include/wrenVM.h 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