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
|
|
|
|
|
|
2017-03-23 11:21:09 +08:00
|
|
|
|
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
|
|
|
|
{
|
2017-03-23 11:21:09 +08:00
|
|
|
|
[Description("GOOD")]
|
2017-03-17 16:06:34 +08:00
|
|
|
|
Good,
|
2017-03-23 11:21:09 +08:00
|
|
|
|
[Description("GREAT")]
|
2017-03-17 16:06:34 +08:00
|
|
|
|
Great
|
|
|
|
|
}
|
|
|
|
|
}
|