osu/osu.Game.Rulesets.Osu/Skinning/OsuSkinConfiguration.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
580 B
C#
Raw Normal View History

// 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,
CursorCentre,
CursorExpand,
CursorRotate,
2020-04-03 17:56:52 +00:00
HitCircleOverlayAboveNumber,
// ReSharper disable once IdentifierTypo
2020-08-15 17:16:28 +00:00
HitCircleOverlayAboveNumer, // Some old skins will have this typo
SpinnerFrequencyModulate,
SpinnerNoBlink
}
}