mirror of
https://github.com/ppy/osu.git
synced 2025-02-05 04:52:53 +08:00
Add more properties to IBeatmapOnlineInfo
This commit is contained in:
parent
2b278ed324
commit
f6a6538e96
@ -13,25 +13,50 @@ namespace osu.Game.Beatmaps
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
int? MaxCombo { get; }
|
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>
|
/// <summary>
|
||||||
/// The amount of circles in this beatmap.
|
/// The amount of circles in this beatmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int CircleCount { get; }
|
int CircleCount { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The amount of sliders in this beatmap.
|
/// The amount of sliders in this beatmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int SliderCount { get; }
|
int SliderCount { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The amount of spinners in tihs beatmap.
|
||||||
|
/// </summary>
|
||||||
|
int SpinnerCount { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The amount of plays this beatmap has.
|
/// The amount of plays this beatmap has.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int PlayCount { get; }
|
int PlayCount { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The amount of passes this beatmap has.
|
/// The amount of passes this beatmap has.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int PassCount { get; }
|
int PassCount { get; }
|
||||||
|
|
||||||
APIFailTimes? FailTimes { get; }
|
APIFailTimes? FailTimes { get; }
|
||||||
}
|
}
|
||||||
|
@ -69,6 +69,9 @@ namespace osu.Game.Online.API.Requests.Responses
|
|||||||
[JsonProperty(@"count_sliders")]
|
[JsonProperty(@"count_sliders")]
|
||||||
public int SliderCount { get; set; }
|
public int SliderCount { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty(@"count_spinners")]
|
||||||
|
public int SpinnerCount { get; set; }
|
||||||
|
|
||||||
[JsonProperty(@"version")]
|
[JsonProperty(@"version")]
|
||||||
public string DifficultyName { get; set; } = string.Empty;
|
public string DifficultyName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user