#include "beatsetimpl.h" #include namespace Beatsaber { BeatSetImpl::BeatSetImpl(const json& j) : characteristic(BeatmapCharacteristic::getByString(j["_beatmapCharacteristicName"])) { } BeatSetImpl::~BeatSetImpl() {} BeatmapCharacteristic::BeatmapCharacteristic BeatSetImpl::getCharacteristic() const { return characteristic; } }