namespace Syntriax.Engine.Core; /// /// Represents a to be notified when the update phase of the occurs. /// public interface IUpdate : IBehaviour { /// /// Updates the state of the . /// void Update(); }