2019-09-03 16:57:34 +08: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
|
|
|
|
{
|
|
|
|
SliderBorderSize,
|
|
|
|
SliderPathRadius,
|
2019-09-20 05:10:55 +08:00
|
|
|
AllowSliderBallTint,
|
2021-04-14 11:33:53 +08:00
|
|
|
CursorCentre,
|
2019-09-03 16:57:34 +08:00
|
|
|
CursorExpand,
|
2020-03-30 18:21:22 +08:00
|
|
|
CursorRotate,
|
2020-04-04 01:56:52 +08:00
|
|
|
HitCircleOverlayAboveNumber,
|
2021-12-29 03:21:59 +08:00
|
|
|
|
|
|
|
// ReSharper disable once IdentifierTypo
|
2020-08-16 01:16:28 +08:00
|
|
|
HitCircleOverlayAboveNumer, // Some old skins will have this typo
|
2020-09-28 18:24:30 +08:00
|
|
|
SpinnerFrequencyModulate,
|
|
|
|
SpinnerNoBlink
|
2019-09-03 16:57:34 +08:00
|
|
|
}
|
|
|
|
}
|