namespace Syntriax.Engine.Core; /// /// Represents a to be notified after the draw phase of the occurs. /// public interface IPostDraw : IBehaviour { /// /// Updates the state of the after the main draw phase happens. /// void PostDraw(); }