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