libBeatsaber/src/beatset.cpp

16 lines
356 B
C++

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