using WacK.Data.Chart;
namespace WacK.MusicDB
{
public enum DifficultyLevel
{
Normal, Hard, Expert, Inferno
}
public struct Difficulty
{
DifficultyLevel diffLevel;
float diffValue;
///
/// % of max score required to clear this chart.
///
float clearRatio;
///
/// Name of audio file for this level.
///
string audioFile;
///
/// Name of chart file for this level.
///
string chartFile;
string designer;
float audioPreviewStart, audioPreviewLength;
float audioOffset; // in seconds
}
}