1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 02:22:35 +08:00

Better comments.

This commit is contained in:
Dean Herbert
2017-04-12 21:08:28 +09:00
Unverified
parent 157ad17606
commit 00cd2c8372
+3 -3
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; }
}