// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Devices
{
///
/// Internal interface to be able to update controller states only from the UltimateXR assembly.
///
internal interface IUxrControllerInputUpdater
{
#region Public Methods
///
/// Updates the input state.
///
void UpdateInput();
#endregion
}
}