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