Remove OsuScore and change the way statistics are stored (dynamic dictionary).

This commit is contained in:
Dean Herbert
2017-04-20 11:02:56 +09:00
parent 3e65cab9b7
commit 6cf026e5c1
8 changed files with 23 additions and 44 deletions

View File

@ -7,7 +7,6 @@ using Newtonsoft.Json;
using osu.Game.Database;
using osu.Game.Rulesets.Mods;
using osu.Game.Users;
using System.IO;
using osu.Game.Rulesets.Replays;
namespace osu.Game.Rulesets.Scoring
@ -49,6 +48,6 @@ namespace osu.Game.Rulesets.Scoring
[JsonProperty(@"created_at")]
public DateTime Date;
public virtual IEnumerable<ScoreStatistic> Statistics => new ScoreStatistic[] { };
public Dictionary<string, dynamic> Statistics = new Dictionary<string, dynamic>();
}
}