// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Experimental.UI { /// /// The possible states of a object. /// public enum DockingState { Undocked = 0, Docking, Docked, Undocking } }