libBeatsaber/include/beatsaber/beatset.h

21 lines
339 B
C++

#pragma once
#include <memory>
#include "beatmapcharacteristic.h"
#include "beatlevel.h"
namespace Beatsaber {
//fwd decl.
class BeatMap;
class BeatSet {
public:
virtual ~BeatSet() {}
virtual BeatmapCharacteristic::BeatmapCharacteristic getCharacteristic() const = 0;
virtual std::shared_ptr<BeatMap> getBeatMap() const = 0;
};
}