// 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 ThreeStates { /// /// The current state is disabled. /// Disabled, /// /// The current state is a combination of and . /// The state becomes if the is pressed. /// Indeterminate, /// /// The current state is enabled. /// Enabled } }