1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:57:36 +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
{
/// <summary>
/// Ratings for a beatmap, length should be 10
/// Total vote counts of user ratings on a scale of 0..length.
/// </summary>
public IEnumerable<int> Ratings { get; set; }
/// <summary>
/// Fails for a beatmap, length should be 100
/// Points of failure on a relative time scale (usually 0..100).
/// </summary>
public IEnumerable<int> Fails { get; set; }
/// <summary>
/// Retries for a beatmap, length should be 100
/// Points of retry on a relative time scale (usually 0..100).
/// </summary>
public IEnumerable<int> Retries { get; set; }
}