libBeatsaber/include/beatsaber/beatset.h

21 lines
339 B
C
Raw Normal View History

2021-05-30 21:56:21 +02:00
#pragma once
2021-06-01 11:47:41 +02:00
#include <memory>
2021-05-30 21:56:21 +02:00
#include "beatmapcharacteristic.h"
2021-06-01 11:47:41 +02:00
#include "beatlevel.h"
2021-05-30 21:56:21 +02:00
namespace Beatsaber {
2021-06-01 11:47:41 +02:00
//fwd decl.
class BeatMap;
2021-05-30 21:56:21 +02:00
class BeatSet {
public:
virtual ~BeatSet() {}
virtual BeatmapCharacteristic::BeatmapCharacteristic getCharacteristic() const = 0;
2021-06-01 11:47:41 +02:00
virtual std::shared_ptr<BeatMap> getBeatMap() const = 0;
2021-05-30 21:56:21 +02:00
};
}