18 lines
377 B
C#
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,
|
|
}
|
|
} |