1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-08 10:47:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Objects/SliderTick.cs

11 lines
306 B
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-03-02 17:45:20 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Osu.Objects
2017-02-13 03:38:05 +08:00
{
public class SliderTick : OsuHitObject
{
2018-01-23 12:58:43 +08:00
public int SpanIndex { get; set; }
2017-02-13 03:38:05 +08:00
}
}