mixedreality/com.microsoft.mixedreality..../SDK/Features/UX/Scripts/ProgressIndicators/ProgressIndicatorState.cs

14 lines
242 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.Toolkit.UI
{
public enum ProgressIndicatorState
{
Closed,
Opening,
Open,
Closing,
}
}