// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.Toolkit.Input
{
///
/// Flags used by MixedRealityControllerAttribute.
///
[System.Flags]
public enum MixedRealityControllerConfigurationFlags : byte
{
///
/// Controllers with custom interaction mappings can have their mappings be added / removed to the
/// controller mapping profile in the property inspector.
///
UseCustomInteractionMappings = 1 << 0,
}
}