// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Devices
{
public abstract partial class UxrControllerInput
{
#region Protected Types & Data
///
/// Enumerates the different button flags representing button states. Flags are described by
/// .
///
protected enum ButtonFlags
{
///
/// Touch state flags for the left controller.
///
TouchFlagsLeft,
///
/// Press state flags for the left controller.
///
PressFlagsLeft,
///
/// Touch state flags for the right controller.
///
TouchFlagsRight,
///
/// Press state flags for the right controller.
///
PressFlagsRight
}
#endregion
}
}