riversong code showcase
This commit is contained in:
13
Source/Engine/Core/IEngine.cs
Normal file
13
Source/Engine/Core/IEngine.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
public interface IEngine
|
||||
{
|
||||
public bool IsInitialized { get; }
|
||||
|
||||
public List<IGameSystem> Systems { get; }
|
||||
|
||||
public void RegisterUpdateFilter(IUpdateFilter filter);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user