1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00
osu-lazer/osu.Game/Configuration/SeasonalBackgroundMode.cs

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

30 lines
1.0 KiB
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.
using osu.Framework.Localisation;
using osu.Game.Localisation;
namespace osu.Game.Configuration
{
public enum SeasonalBackgroundMode
{
2020-10-31 02:56:52 +08:00
/// <summary>
/// Seasonal backgrounds are shown regardless of season, if at all available.
/// </summary>
2022-08-09 22:35:19 +08:00
[LocalisableDescription(typeof(UserInterfaceStrings), nameof(UserInterfaceStrings.AlwaysSeasonalBackground))]
Always,
2020-10-31 02:56:52 +08:00
/// <summary>
/// Seasonal backgrounds are shown only during their corresponding season.
/// </summary>
2022-08-09 22:35:19 +08:00
[LocalisableDescription(typeof(UserInterfaceStrings), nameof(UserInterfaceStrings.SometimesSeasonalBackground))]
Sometimes,
2020-10-31 02:56:52 +08:00
/// <summary>
/// Seasonal backgrounds are never shown.
/// </summary>
2022-08-09 22:35:19 +08:00
[LocalisableDescription(typeof(UserInterfaceStrings), nameof(UserInterfaceStrings.NeverSeasonalBackground))]
Never
}
}