mirror of
https://github.com/yourWaifu/sleepy-discord.git
synced 2026-01-06 05:29:32 -06:00
16 lines
394 B
C++
16 lines
394 B
C++
#include "voice.h"
|
|
|
|
namespace SleepyDiscord {
|
|
VoiceState::VoiceState(const json::Value & json) :
|
|
VoiceState(json::fromJSON<VoiceState>(json)) {
|
|
}
|
|
|
|
VoiceRegion::VoiceRegion(const json::Value & json) :
|
|
VoiceRegion(json::fromJSON<VoiceRegion>(json)) {
|
|
}
|
|
|
|
VoiceServerUpdate::VoiceServerUpdate(const json::Value & json) :
|
|
VoiceServerUpdate(json::fromJSON<VoiceServerUpdate>(json)) {
|
|
}
|
|
}
|