1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00

Add xmldoc to SeasonalBackgroundMode

This commit is contained in:
Bartłomiej Dach 2020-10-30 19:56:52 +01:00
parent 20c27c6943
commit aeab2be5d1

View File

@ -5,8 +5,19 @@ namespace osu.Game.Configuration
{
public enum SeasonalBackgroundMode
{
/// <summary>
/// Seasonal backgrounds are shown regardless of season, if at all available.
/// </summary>
Always,
/// <summary>
/// Seasonal backgrounds are shown only during their corresponding season.
/// </summary>
Sometimes,
/// <summary>
/// Seasonal backgrounds are never shown.
/// </summary>
Never
}
}