mixedreality/com.microsoft.mixedreality..../SDK/Features/UX/Scripts/Dialog/DialogState.cs

18 lines
377 B
C#

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