osu/osu.Game/Rulesets/UI/PlayfieldBorderStyle.cs

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

21 lines
674 B
C#
Raw Normal View History

2020-10-20 04:59:03 +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.
using osu.Framework.Localisation;
using osu.Game.Localisation;
2020-10-20 04:59:03 +00:00
namespace osu.Game.Rulesets.UI
{
public enum PlayfieldBorderStyle
{
2022-08-09 14:35:19 +00:00
[LocalisableDescription(typeof(RulesetSettingsStrings), nameof(RulesetSettingsStrings.BorderNone))]
2020-10-20 04:59:03 +00:00
None,
2022-08-09 14:35:19 +00:00
[LocalisableDescription(typeof(RulesetSettingsStrings), nameof(RulesetSettingsStrings.BorderCorners))]
2020-10-20 04:59:03 +00:00
Corners,
2022-08-09 14:35:19 +00:00
[LocalisableDescription(typeof(RulesetSettingsStrings), nameof(RulesetSettingsStrings.BorderFull))]
2020-10-20 04:59:03 +00:00
Full
}
}