forked from Shardstone/trail-into-darkness
First commit on my server, yey!
This commit is contained in:
11
Assets/Code/Core/IGameLifecycle.cs
Normal file
11
Assets/Code/Core/IGameLifecycle.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user