namespace Syntriax.Engine.Core; /// /// Represents a to be notified when the draw phase of the occurs. /// public interface IDraw : IBehaviour { /// /// Calls draw logic for the to be displayed visually. /// void Draw(); }