// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- namespace UltimateXR.Devices.Integrations { public abstract partial class UxrUnityXRControllerInput { #region Private Types & Data /// /// Types of button contact. /// protected enum ButtonContact { /// /// Button press. /// Press, /// /// Button contact without pressing. /// Touch } #endregion } }