summaryrefslogtreecommitdiff
path: root/bot/src/bundle.hpp
diff options
context:
space:
mode:
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;
};
}