1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 12:42:54 +08:00

Better comments.

This commit is contained in:
Dean Herbert 2017-04-12 21:08:28 +09:00
parent 157ad17606
commit 00cd2c8372
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49

View File

@ -8,17 +8,17 @@ namespace osu.Game.Database
public class BeatmapMetric public class BeatmapMetric
{ {
/// <summary> /// <summary>
/// Ratings for a beatmap, length should be 10 /// Total vote counts of user ratings on a scale of 0..length.
/// </summary> /// </summary>
public IEnumerable<int> Ratings { get; set; } public IEnumerable<int> Ratings { get; set; }
/// <summary> /// <summary>
/// Fails for a beatmap, length should be 100 /// Points of failure on a relative time scale (usually 0..100).
/// </summary> /// </summary>
public IEnumerable<int> Fails { get; set; } public IEnumerable<int> Fails { get; set; }
/// <summary> /// <summary>
/// Retries for a beatmap, length should be 100 /// Points of retry on a relative time scale (usually 0..100).
/// </summary> /// </summary>
public IEnumerable<int> Retries { get; set; } public IEnumerable<int> Retries { get; set; }
} }