// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- using System; namespace UltimateXR.Editor.Sdks.InputTracking { public static partial class SteamVRActionsExporter { #region Private Types & Data /// /// Enumerates the possible button interaction types. /// [Flags] private enum ButtonUsageFlags { None = 0, Click = 1, Touch = 1 << 1, All = 0x7FFFFFFF } #endregion } }