// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Graphics.UserInterface { /// /// An on/off state with an extra indeterminate state. /// public enum TernaryState { /// /// The current state is false. /// False, /// /// The current state is a combination of and . /// The state becomes if the is pressed. /// Indeterminate, /// /// The current state is true. /// True } }