mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Add ManiaHitResult to ManiaJudgement.
This commit is contained in:
18
osu.Game.Rulesets.Mania/Judgements/ManiaHitResult.cs
Normal file
18
osu.Game.Rulesets.Mania/Judgements/ManiaHitResult.cs
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
using System.ComponentModel;
|
||||||
|
|
||||||
|
namespace osu.Game.Rulesets.Mania.Judgements
|
||||||
|
{
|
||||||
|
public enum ManiaHitResult
|
||||||
|
{
|
||||||
|
[Description("PERFECT")]
|
||||||
|
Perfect,
|
||||||
|
[Description("GREAT")]
|
||||||
|
Great,
|
||||||
|
[Description("GOOD")]
|
||||||
|
Good,
|
||||||
|
[Description("OK")]
|
||||||
|
Ok,
|
||||||
|
[Description("BAD")]
|
||||||
|
Bad
|
||||||
|
}
|
||||||
|
}
|
@ -10,5 +10,7 @@ namespace osu.Game.Rulesets.Mania.Judgements
|
|||||||
public override string ResultString => string.Empty;
|
public override string ResultString => string.Empty;
|
||||||
|
|
||||||
public override string MaxResultString => string.Empty;
|
public override string MaxResultString => string.Empty;
|
||||||
|
|
||||||
|
public ManiaHitResult ManiaResult;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user