// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Utilities { /// /// Indicates the confidence level of a recognized event. /// public enum RecognitionConfidenceLevel { High = 0, Medium, Low, Unknown } }