2017-03-15 20:32:47 +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-15 15:07:40 +08:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
namespace osu.Game.Rulesets.Objects.Drawables
|
2017-03-15 15:07:40 +08:00
|
|
|
{
|
|
|
|
public enum HitResult
|
|
|
|
{
|
2017-03-29 16:57:36 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Indicates that the object has not been judged yet.
|
|
|
|
/// </summary>
|
|
|
|
[Description("")]
|
|
|
|
None,
|
|
|
|
/// <summary>
|
|
|
|
/// Indicates that the object has been judged as a miss.
|
|
|
|
/// </summary>
|
2017-03-15 15:07:40 +08:00
|
|
|
[Description(@"Miss")]
|
|
|
|
Miss,
|
2017-03-29 16:57:36 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Indicates that the object has been judged as a hit.
|
|
|
|
/// </summary>
|
2017-03-15 15:07:40 +08:00
|
|
|
[Description(@"Hit")]
|
|
|
|
Hit,
|
|
|
|
}
|
|
|
|
}
|