Files
WacK/Scripts/Data/MusicDB/Difficulty.cs
T

36 lines
600 B
C#
Raw Normal View History

2023-09-30 15:58:08 -07:00
using WacK.Data.Chart;
namespace WacK.MusicDB
{
public enum DifficultyLevel
{
Normal, Hard, Expert, Inferno
}
public struct Difficulty
{
DifficultyLevel diffLevel;
float diffValue;
/// <summary>
/// % of max score required to clear this chart.
/// </summary>
float clearRatio;
/// <summary>
2023-10-09 01:23:13 -07:00
/// Name of audio file for this level.
2023-09-30 15:58:08 -07:00
/// </summary>
string audioFile;
2023-10-09 01:23:13 -07:00
/// <summary>
/// Name of chart file for this level.
/// </summary>
string chartFile;
2023-09-30 15:58:08 -07:00
string designer;
float audioPreviewStart, audioPreviewLength;
float audioOffset; // in seconds
}
}