From 2bd139d4323efa983df47bd131c90df501aee371 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Tue, 15 Apr 2025 15:48:22 +0500 Subject: feat: get loaded commands from lua --- bot/src/bundle.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'bot/src/bundle.hpp') 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; }; } -- cgit v1.2.3