1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 14:07:27 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/Judgements/TaikoHitResult.cs

16 lines
380 B
C#
Raw Normal View History

2017-03-17 16:06:34 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.ComponentModel;
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Taiko.Judgements
2017-03-17 16:06:34 +08:00
{
2017-03-21 20:36:05 +08:00
public enum TaikoHitResult
2017-03-17 16:06:34 +08:00
{
[Description("GOOD")]
2017-03-17 16:06:34 +08:00
Good,
[Description("GREAT")]
2017-03-17 16:06:34 +08:00
Great
}
}