summaryrefslogtreecommitdiff
path: root/bot/src/bundle.hpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-04-15 15:48:22 +0500
committerilotterytea <iltsu@alright.party>2025-04-15 15:48:22 +0500
commit2bd139d4323efa983df47bd131c90df501aee371 (patch)
treeb33dfddd1532389031c569b342f6f6974b728fb1 /bot/src/bundle.hpp
parent25477e58bd54585066f518a0e87317a7cd9a6632 (diff)
feat: get loaded commands from lua
Diffstat (limited to 'bot/src/bundle.hpp')
-rw-r--r--bot/src/bundle.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/bot/src/bundle.hpp b/bot/src/bundle.hpp
index d30f5f8..6f29a50 100644
--- a/bot/src/bundle.hpp
+++ b/bot/src/bundle.hpp
@@ -1,6 +1,15 @@
#pragma once
+namespace bot {
+ namespace command {
+ class CommandLoader;
+ }
+
+ class InstanceBundle;
+}
+
#include "api/twitch/helix_client.hpp"
+#include "commands/command.hpp"
#include "config.hpp"
#include "irc/client.hpp"
#include "localization/localization.hpp"
@@ -11,5 +20,6 @@ namespace bot {
const api::twitch::HelixClient &helix_client;
const bot::loc::Localization &localization;
const Configuration &configuration;
+ const command::CommandLoader &command_loader;
};
}