mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 20:27:27 +09:00
10 lines
226 B
C#
10 lines
226 B
C#
namespace osu.Game.Modes.Osu.Objects
|
|
{
|
|
public class SliderTick : OsuHitObject
|
|
{
|
|
public int RepeatIndex { get; set; }
|
|
|
|
public override HitObjectType Type => HitObjectType.SliderTick;
|
|
}
|
|
}
|