2019-01-24 16:43:03 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-08-02 19:36:38 +08:00
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2018-08-02 19:36:38 +08:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Judgements
|
|
|
|
{
|
|
|
|
public enum ComboResult
|
|
|
|
{
|
|
|
|
[Description(@"")]
|
|
|
|
None,
|
2019-02-28 12:31:40 +08:00
|
|
|
|
2018-08-02 19:36:38 +08:00
|
|
|
[Description(@"Good")]
|
|
|
|
Good,
|
2019-02-28 12:31:40 +08:00
|
|
|
|
2018-08-02 19:36:38 +08:00
|
|
|
[Description(@"Amazing")]
|
|
|
|
Perfect
|
|
|
|
}
|
|
|
|
}
|