Remove Statistics from interface until we figure how to properly deserialise

This commit is contained in:
Dean Herbert
2021-10-29 14:18:10 +09:00
parent 3f030cebf4
commit cd7bd935f6
2 changed files with 2 additions and 7 deletions

View File

@ -9,7 +9,6 @@ using Newtonsoft.Json.Converters;
using osu.Game.Beatmaps;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Scoring;
using osu.Game.Scoring;
using osu.Game.Scoring.Legacy;
using osu.Game.Users;
@ -141,7 +140,5 @@ namespace osu.Game.Online.API.Requests.Responses
public IRulesetInfo Ruleset => new RulesetInfo { ID = OnlineRulesetID };
IBeatmapInfo IScoreInfo.Beatmap => Beatmap;
Dictionary<HitResult, int> IScoreInfo.Statistics => new Dictionary<HitResult, int>(); // TODO: implement... maybe. hitresults have weird mappings per ruleset it would seem.
}
}