1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/TernaryState.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
797 B
C#
Raw Normal View History

2019-11-08 12:16:09 +08: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 12:16:09 +08:00
{
/// <summary>
/// The current state is false.
2019-11-08 12:16:09 +08:00
/// </summary>
False,
2019-11-08 12:16:09 +08:00
/// <summary>
/// The current state is a combination of <see cref="False"/> and <see cref="True"/>.
2019-11-12 09:18:25 +08:00
/// The state becomes <see cref="True"/> if the <see cref="TernaryStateMenuItem"/> is pressed.
2019-11-08 12:16:09 +08:00
/// </summary>
Indeterminate,
/// <summary>
/// The current state is true.
2019-11-08 12:16:09 +08:00
/// </summary>
True
2019-11-08 12:16:09 +08:00
}
}