Use new hit results in mania

This commit is contained in:
smoogipoo
2020-09-29 14:29:43 +09:00
parent 4ca9a69de2
commit b1877b649b
5 changed files with 7 additions and 41 deletions

View File

@ -2,34 +2,10 @@
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Mania.Judgements
{
public class ManiaJudgement : Judgement
{
protected override int NumericResultFor(HitResult result)
{
switch (result)
{
default:
return 0;
case HitResult.Meh:
return 50;
case HitResult.Ok:
return 100;
case HitResult.Good:
return 200;
case HitResult.Great:
return 300;
case HitResult.Perfect:
return 350;
}
}
}
}