mirror of
https://github.com/HappyTanuki/BumbleCee.git
synced 2025-10-27 18:15:14 +00:00
일단은 임시저장, 스트리밍의 실마리를 잡았다
This commit is contained in:
16
include/MusicPlayManager.hpp
Normal file
16
include/MusicPlayManager.hpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
#ifndef _MUSICPLAYMANAGER_HPP_
|
||||
#define _MUSICPLAYMANAGER_HPP_
|
||||
#include <dpp/dpp.h>
|
||||
|
||||
namespace BumbleBee {
|
||||
class MusicPlayManager {
|
||||
public:
|
||||
MusicPlayManager(std::shared_ptr<dpp::cluster> cluster) {
|
||||
this->cluster = cluster;
|
||||
}
|
||||
private:
|
||||
std::shared_ptr<dpp::cluster> cluster;
|
||||
};
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user