// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Devices
{
///
/// Enumerates the possible elements in a VR controller that have a 2-axis input.
///
public enum UxrInput2D
{
///
/// No element.
///
None,
///
/// Controller joystick.
///
Joystick,
///
/// Secondary joystick in a device that has two joysticks.
///
Joystick2
}
}