2020-07-22 03:41:06 +00: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.
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
namespace osu.Game.Configuration
|
|
|
|
{
|
|
|
|
public enum HUDVisibilityMode
|
|
|
|
{
|
|
|
|
Never,
|
|
|
|
|
2020-10-20 05:20:44 +00:00
|
|
|
[Description("Hide during gameplay")]
|
|
|
|
HideDuringGameplay,
|
|
|
|
|
2020-07-22 03:41:06 +00:00
|
|
|
[Description("Hide during breaks")]
|
2020-10-20 05:20:44 +00:00
|
|
|
HideDuringBreaks,
|
2020-07-22 03:41:06 +00:00
|
|
|
|
|
|
|
Always
|
|
|
|
}
|
|
|
|
}
|