13 lines
285 B
C#
13 lines
285 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public interface IEngine
|
|
{
|
|
public bool IsInitialized { get; }
|
|
|
|
public List<IGameSystem> Systems { get; }
|
|
|
|
public void RegisterUpdateFilter(IUpdateFilter filter);
|
|
}
|
|
} |