2019-09-03 17:57:34 +09:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Skinning
|
|
|
|
{
|
|
|
|
public enum OsuSkinConfiguration
|
|
|
|
{
|
2019-09-10 18:06:24 +09:00
|
|
|
HitCirclePrefix,
|
2019-09-03 17:57:34 +09:00
|
|
|
HitCircleOverlap,
|
|
|
|
SliderBorderSize,
|
|
|
|
SliderPathRadius,
|
2019-09-20 00:10:55 +03:00
|
|
|
AllowSliderBallTint,
|
2019-09-03 17:57:34 +09:00
|
|
|
CursorExpand,
|
2020-03-30 13:21:22 +03:00
|
|
|
CursorRotate,
|
2020-04-03 20:56:52 +03:00
|
|
|
HitCircleOverlayAboveNumber,
|
2020-08-15 20:16:28 +03:00
|
|
|
HitCircleOverlayAboveNumer, // Some old skins will have this typo
|
|
|
|
SpinnerFrequencyModulate
|
2019-09-03 17:57:34 +09:00
|
|
|
}
|
|
|
|
}
|