IRenderLoop.cs 379 B

123456789101112131415
  1. using System;
  2. namespace Avalonia.Rendering
  3. {
  4. /// <summary>
  5. /// Defines the interface implemented by an application render loop.
  6. /// </summary>
  7. public interface IRenderLoop
  8. {
  9. /// <summary>
  10. /// Raised when the render loop ticks to signal a new frame should be drawn.
  11. /// </summary>
  12. event EventHandler<EventArgs> Tick;
  13. }
  14. }