2020-10-29 17:28:04 +01: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.
|
|
|
|
|
|
|
|
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>
|
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>
|
2020-10-29 17:28:04 +01:00
|
|
|
Sometimes,
|
2020-10-30 19:56:52 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Seasonal backgrounds are never shown.
|
|
|
|
/// </summary>
|
2020-10-29 17:28:04 +01:00
|
|
|
Never
|
|
|
|
}
|
|
|
|
}
|