Hide HUD elements during break time by default

This commit is contained in:
Dean Herbert
2020-07-22 12:41:06 +09:00
parent 557daadd4a
commit fea6389f69
6 changed files with 60 additions and 18 deletions

View File

@ -0,0 +1,17 @@
// 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 System.ComponentModel;
namespace osu.Game.Configuration
{
public enum HUDVisibilityMode
{
Never,
[Description("Hide during breaks")]
DuringGameplay,
Always
}
}