using System;
namespace Avalonia.Rendering
{
///
/// Defines the interface implemented by an application render loop.
///
public interface IRenderLoop
{
///
/// Raised when the render loop ticks to signal a new frame should be drawn.
///
event EventHandler Tick;
}
}