// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.UI { /// /// Describes the current state of a Dialog. /// public enum DialogState { Uninitialized = 0, Opening, WaitingForInput, InputReceived, Closing, Closed, } }