mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 06:47:25 +08:00
12 lines
213 B
C#
12 lines
213 B
C#
|
using System.ComponentModel;
|
||
|
|
||
|
namespace osu.Game.Modes.Objects.Drawables
|
||
|
{
|
||
|
public enum HitResult
|
||
|
{
|
||
|
[Description(@"Miss")]
|
||
|
Miss,
|
||
|
[Description(@"Hit")]
|
||
|
Hit,
|
||
|
}
|
||
|
}
|