You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
project-kyoku/modes/classicmode/game/classicmapcreator.h

21 lines
287 B
C++

#pragma once
#include <set>
#include "tools/mathutils.h"
#include "classicnote.h"
namespace classic
{
struct Beatmap
{
std::set<ClassicNote*, NotePtrCompt> notes;
microsec visibility_offset;
};
Beatmap createBeatmap(const std::string& filepath, const Context& context);
}