mixedreality/com.microsoft.mixedreality..../Core/Definitions/Utilities/ScaleState.cs

12 lines
227 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.Toolkit.Utilities
{
public enum ScaleState
{
Static = 0,
Shrinking,
Growing
}
}