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

21 lines
287 B
C
Raw Normal View History

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