forked from Shardstone/trail-into-darkness
12 lines
273 B
C#
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();
|
|
}
|
|
}
|