mirror of
https://github.com/ppy/osu.git
synced 2024-11-14 19:37:51 +08:00
417f146386
Adds base classes for difficulty calculations, hooks them up with carousel container, and adds a port of the osu difficulty calculator.
12 lines
243 B
C#
12 lines
243 B
C#
using OpenTK;
|
|
|
|
namespace osu.Game.Modes.Osu.Objects
|
|
{
|
|
public class SliderTick : OsuHitObject
|
|
{
|
|
public int RepeatIndex { get; set; }
|
|
|
|
public override HitObjectType Type => HitObjectType.SliderTick;
|
|
}
|
|
}
|