음챗 나가기 구현 완료

This commit is contained in:
2023-12-28 00:06:34 +09:00
parent 8a987320e0
commit 52c4bdf3d4
780 changed files with 260 additions and 162577 deletions

View File

@@ -11,15 +11,17 @@ int main() {
std::shared_ptr<BumbleCeepp> BumbleBee(BumbleCeepp::GetInstance(configdocument["token"]));
Play Command1(BumbleBee);
Repeat Command2(BumbleBee);
Queue Command3(BumbleBee);
Skip Command4(BumbleBee);
Commands::Play Command1(BumbleBee);
Commands::Repeat Command2(BumbleBee);
Commands::Queue Command3(BumbleBee);
Commands::Skip Command4(BumbleBee);
Commands::Leave Command5(BumbleBee);
BumbleBee->AddCommand(Command1);
BumbleBee->AddCommand(Command2);
BumbleBee->AddCommand(Command3);
BumbleBee->AddCommand(Command4);
BumbleBee->AddCommand(Command5);
BumbleBee->Start();