// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Devices
{
///
/// Internal interface to be able to update the tracking information only from the UltimateXR assembly.
///
internal interface IUxrTrackingUpdater
{
#region Public Methods
///
/// Updates the sensor information
///
void UpdateSensors();
///
/// Updates the avatar using the current sensor information
///
void UpdateAvatar();
#endregion
}
}