mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 22:22:56 +08: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;
|
|
}
|
|
}
|