namespace Nox.Core { /// /// Prototype for every behaviour that needs to run tick/frame updates /// public interface IGameLifecycle { public void Initialize(); public void Tick(); public void Dispose(); } }