1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-29 16:17:51 +08:00
osu-lazer/osu.Game/Modes/Objects/Drawables/HitResult.cs

12 lines
213 B
C#
Raw Normal View History

using System.ComponentModel;
namespace osu.Game.Modes.Objects.Drawables
{
public enum HitResult
{
[Description(@"Miss")]
Miss,
[Description(@"Hit")]
Hit,
}
}