using SM.Base.Window.Contexts; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SM.Base.Scene { /// /// This interface allows for a object to implerment a fixed update. /// public interface IFixedScriptable { /// /// Executes a fixed update. /// /// void FixedUpdate(FixedUpdateContext context); } }