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
|
|
|
|
{
|
|
|
|
SliderBorderSize,
|
|
|
|
SliderPathRadius,
|
2021-04-14 03:33:53 +00:00
|
|
|
CursorCentre,
|
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,
|
2021-12-28 19:21:59 +00:00
|
|
|
|
|
|
|
// ReSharper disable once IdentifierTypo
|
2020-08-15 17:16:28 +00:00
|
|
|
HitCircleOverlayAboveNumer, // Some old skins will have this typo
|
2020-09-28 10:24:30 +00:00
|
|
|
SpinnerFrequencyModulate,
|
|
|
|
SpinnerNoBlink
|
2019-09-03 08:57:34 +00:00
|
|
|
}
|
|
|
|
}
|