namespace UnityEngine.ResourceManagement
{
///
/// Providers that implement this interface will received Update calls from the ResourceManager each frame
///
public interface IUpdateReceiver
{
///
/// This will be called once per frame by the ResourceManager
///
/// The unscaled delta time since the last invocation of this function
void Update(float unscaledDeltaTime);
}
}