1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 04:47:50 +08:00
osu-lazer/osu.Game/Rulesets/UI/PlayfieldBorderStyle.cs

21 lines
674 B
C#
Raw Normal View History

2023-06-23 00:37:25 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2020-10-20 12:59:03 +08:00
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Localisation;
using osu.Game.Localisation;
2020-10-20 12:59:03 +08:00
namespace osu.Game.Rulesets.UI
{
public enum PlayfieldBorderStyle
{
2022-08-09 22:35:19 +08:00
[LocalisableDescription(typeof(RulesetSettingsStrings), nameof(RulesetSettingsStrings.BorderNone))]
2020-10-20 12:59:03 +08:00
None,
2022-08-09 22:35:19 +08:00
[LocalisableDescription(typeof(RulesetSettingsStrings), nameof(RulesetSettingsStrings.BorderCorners))]
2020-10-20 12:59:03 +08:00
Corners,
2022-08-09 22:35:19 +08:00
[LocalisableDescription(typeof(RulesetSettingsStrings), nameof(RulesetSettingsStrings.BorderFull))]
2020-10-20 12:59:03 +08:00
Full
}
}