17 lines
351 B
C#
17 lines
351 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
namespace Microsoft.MixedReality.Toolkit.Utilities
|
|
{
|
|
/// <summary>
|
|
/// Indicates the confidence level of a recognized event.
|
|
/// </summary>
|
|
public enum RecognitionConfidenceLevel
|
|
{
|
|
High = 0,
|
|
Medium,
|
|
Low,
|
|
Unknown
|
|
}
|
|
}
|