project-kyoku/modes/classicmode/game/classicmapcreator.h

21 lines
287 B
C
Raw Normal View History

2021-10-04 17:30:21 +02:00
#pragma once
2021-10-03 17:23:28 +02:00
#include <set>
#include "tools/mathutils.h"
2021-10-04 17:30:21 +02:00
#include "classicnote.h"
namespace classic
{
struct Beatmap
{
2021-10-03 17:23:28 +02:00
std::set<ClassicNote*, NotePtrCompt> notes;
microsec visibility_offset;
};
Beatmap createBeatmap(const std::string& filepath, const Context& context);
}