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