mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
move HitResult in Scoring namespace to replace HitCount
This commit is contained in:
@ -8,7 +8,6 @@ using osu.Game.Beatmaps;
|
||||
using osu.Game.Rulesets.Scoring;
|
||||
using osu.Game.Screens.Ranking;
|
||||
using osu.Game.Users;
|
||||
using static osu.Game.Rulesets.Scoring.Score;
|
||||
|
||||
namespace osu.Game.Tests.Visual
|
||||
{
|
||||
@ -42,12 +41,12 @@ namespace osu.Game.Tests.Visual
|
||||
MaxCombo = 123,
|
||||
Rank = ScoreRank.A,
|
||||
Date = DateTimeOffset.Now,
|
||||
Statistics = new Dictionary<HitCount, dynamic>
|
||||
Statistics = new Dictionary<HitResult, dynamic>
|
||||
{
|
||||
{ HitCount.Great, 50 },
|
||||
{ HitCount.Good, 20 },
|
||||
{ HitCount.Meh, 50 },
|
||||
{ HitCount.Miss, 1 }
|
||||
{ HitResult.Great, 50 },
|
||||
{ HitResult.Good, 20 },
|
||||
{ HitResult.Meh, 50 },
|
||||
{ HitResult.Miss, 1 }
|
||||
},
|
||||
User = new User
|
||||
{
|
||||
|
Reference in New Issue
Block a user