// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
using System;
using UltimateXR.Devices.Integrations.SteamVR;
namespace UltimateXR.Devices.Integrations.Valve
{
///
/// Tracking component for Valve Index controllers, also known as Knuckles, using SteamVR.
///
public class UxrValveIndexTracking : UxrSteamVRControllerTracking
{
#region Public Overrides UxrControllerTracking
///
public override Type RelatedControllerInputType => typeof(UxrValveIndexInput);
#endregion
}
}