2019-09-03 08:57:34 +00: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 09:06:24 +00:00
|
|
|
HitCirclePrefix,
|
2019-09-03 08:57:34 +00:00
|
|
|
HitCircleOverlap,
|
|
|
|
SliderBorderSize,
|
|
|
|
SliderPathRadius,
|
2019-09-19 21:10:55 +00:00
|
|
|
AllowSliderBallTint,
|
2019-09-03 08:57:34 +00:00
|
|
|
CursorExpand,
|
2020-03-30 10:21:22 +00:00
|
|
|
CursorRotate,
|
2020-04-03 17:56:52 +00:00
|
|
|
HitCircleOverlayAboveNumber,
|
|
|
|
HitCircleOverlayAboveNumer // Some old skins will have this typo
|
2019-09-03 08:57:34 +00:00
|
|
|
}
|
|
|
|
}
|