2023-06-23 01:37:25 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2020-10-29 17:28:04 +01:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2022-08-08 01:11:15 +10:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
using osu.Game.Localisation;
|
|
|
|
|
|
2020-10-29 17:28:04 +01:00
|
|
|
|
namespace osu.Game.Configuration
|
|
|
|
|
{
|
2020-10-30 15:54:10 +01:00
|
|
|
|
public enum SeasonalBackgroundMode
|
2020-10-29 17:28:04 +01:00
|
|
|
|
{
|
2020-10-30 19:56:52 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Seasonal backgrounds are shown regardless of season, if at all available.
|
|
|
|
|
/// </summary>
|
2022-08-10 00:35:19 +10:00
|
|
|
|
[LocalisableDescription(typeof(UserInterfaceStrings), nameof(UserInterfaceStrings.AlwaysSeasonalBackground))]
|
2020-10-29 17:28:04 +01:00
|
|
|
|
Always,
|
2020-10-30 19:56:52 +01:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Seasonal backgrounds are shown only during their corresponding season.
|
|
|
|
|
/// </summary>
|
2022-08-10 00:35:19 +10:00
|
|
|
|
[LocalisableDescription(typeof(UserInterfaceStrings), nameof(UserInterfaceStrings.SometimesSeasonalBackground))]
|
2020-10-29 17:28:04 +01:00
|
|
|
|
Sometimes,
|
2020-10-30 19:56:52 +01:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Seasonal backgrounds are never shown.
|
|
|
|
|
/// </summary>
|
2022-08-10 00:35:19 +10:00
|
|
|
|
[LocalisableDescription(typeof(UserInterfaceStrings), nameof(UserInterfaceStrings.NeverSeasonalBackground))]
|
2020-10-29 17:28:04 +01:00
|
|
|
|
Never
|
|
|
|
|
}
|
|
|
|
|
}
|