#pragma once #include #include #include "Command.hpp" class CommandManager { public: CommandManager(); std::vector getListAllCommands(); std::string execute(Minecraft& mc, Player& player, const std::string& input); Command* getCommand(const std::string& name); private: void registerAllCommands(); std::vector m_commands; };