#ifndef _REPEAT_HPP_ #define _REPEAT_HPP_ #include #include #include namespace Commands { class Repeat : public ICommand { public: Repeat(std::shared_ptr Bot); void operator()(const dpp::slashcommand_t& Event) {} void operator()(std::list& MusicQueue, const dpp::slashcommand_t& Event); private: std::shared_ptr Bot; }; } #endif