osu/osu.Game/Beatmaps/BeatmapMetrics.cs

27 lines
810 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 09:19:50 +00:00
2019-06-13 07:30:38 +00:00
using System;
2018-04-13 09:19:50 +00:00
using Newtonsoft.Json;
namespace osu.Game.Beatmaps
{
/// <summary>
2019-06-13 07:52:49 +00:00
/// Beatmap metrics based on accumulated online data from community plays.
2018-04-13 09:19:50 +00:00
/// </summary>
public class BeatmapMetrics
{
/// <summary>
/// Points of failure on a relative time scale (usually 0..100).
/// </summary>
[JsonProperty(@"fail")]
2019-06-13 07:30:38 +00:00
public int[] Fails { get; set; } = Array.Empty<int>();
2018-04-13 09:19:50 +00:00
/// <summary>
/// Points of retry on a relative time scale (usually 0..100).
/// </summary>
[JsonProperty(@"exit")]
2019-06-13 07:30:38 +00:00
public int[] Retries { get; set; } = Array.Empty<int>();
2018-04-13 09:19:50 +00:00
}
}