Files
trail-into-darkness/Assets/Code/Core/IGameLifecycle.cs
2026-03-19 18:12:07 +01:00

12 lines
273 B
C#

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