mirror of
https://github.com/osukey/osukey.git
synced 2025-05-03 04:37:30 +09: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,
|
|
}
|
|
} |