osu/osu.Game/Graphics/UserInterface/TernaryState.cs

28 lines
797 B
C#
Raw Normal View History

2019-11-08 04:16:09 +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.
namespace osu.Game.Graphics.UserInterface
{
/// <summary>
/// An on/off state with an extra indeterminate state.
/// </summary>
public enum TernaryState
2019-11-08 04:16:09 +00:00
{
/// <summary>
/// The current state is false.
2019-11-08 04:16:09 +00:00
/// </summary>
False,
2019-11-08 04:16:09 +00:00
/// <summary>
/// The current state is a combination of <see cref="False"/> and <see cref="True"/>.
2019-11-12 01:18:25 +00:00
/// The state becomes <see cref="True"/> if the <see cref="TernaryStateMenuItem"/> is pressed.
2019-11-08 04:16:09 +00:00
/// </summary>
Indeterminate,
/// <summary>
/// The current state is true.
2019-11-08 04:16:09 +00:00
/// </summary>
True
2019-11-08 04:16:09 +00:00
}
}