mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Add more properties to IBeatmapOnlineInfo
This commit is contained in:
@ -13,25 +13,50 @@ namespace osu.Game.Beatmaps
|
||||
/// </summary>
|
||||
int? MaxCombo { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The approach rate.
|
||||
/// </summary>
|
||||
float ApproachRate { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The circle size.
|
||||
/// </summary>
|
||||
float CircleSize { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The drain rate.
|
||||
/// </summary>
|
||||
float DrainRate { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The overall difficulty.
|
||||
/// </summary>
|
||||
float OverallDifficulty { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The amount of circles in this beatmap.
|
||||
/// </summary>
|
||||
public int CircleCount { get; }
|
||||
int CircleCount { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The amount of sliders in this beatmap.
|
||||
/// </summary>
|
||||
public int SliderCount { get; }
|
||||
int SliderCount { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The amount of spinners in tihs beatmap.
|
||||
/// </summary>
|
||||
int SpinnerCount { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The amount of plays this beatmap has.
|
||||
/// </summary>
|
||||
public int PlayCount { get; }
|
||||
int PlayCount { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The amount of passes this beatmap has.
|
||||
/// </summary>
|
||||
public int PassCount { get; }
|
||||
int PassCount { get; }
|
||||
|
||||
APIFailTimes? FailTimes { get; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user