changes and fixes

This commit is contained in:
Jorolf
2017-04-11 14:02:56 +02:00
parent ad41fd5c1a
commit fb5952186c
6 changed files with 30 additions and 27 deletions

View File

@ -1,6 +1,8 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
namespace osu.Game.Database
{
public class BeatmapMetric
@ -8,16 +10,16 @@ namespace osu.Game.Database
/// <summary>
/// Ratings for a beatmap, length should be 10
/// </summary>
public int[] Ratings { get; set; }
public List<int> Ratings { get; set; }
/// <summary>
/// Fails for a beatmap, length should be 100
/// </summary>
public int[] Fails { get; set; }
public List<int> Fails { get; set; }
/// <summary>
/// Retries for a beatmap, length should be 100
/// </summary>
public int[] Retries { get; set; }
public List<int> Retries { get; set; }
}
}