16 lines
354 B
C#
16 lines
354 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
namespace Microsoft.MixedReality.Toolkit.Experimental.UI
|
|
{
|
|
/// <summary>
|
|
/// The possible states of a <see cref="Dockable"/> object.
|
|
/// </summary>
|
|
public enum DockingState
|
|
{
|
|
Undocked = 0,
|
|
Docking,
|
|
Docked,
|
|
Undocking
|
|
}
|
|
} |