// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- using System; namespace UltimateXR.Editor.Sdks.InputTracking { public static partial class SteamVRActionsExporter { #region Private Types & Data /// /// Enumerates the different sides supported by controller elements. /// [Flags] private enum SideFlags { None = 0, Left = 1, Right = 1 << 1, BothSides = Left | Right } #endregion } }