Entitas  0.35.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
IInitializeSystem.cs
1 namespace Entitas {
2 
3  /// Implement this interface if you want to create a system which should be
4  /// initialized once in the beginning.
5  public interface IInitializeSystem : ISystem {
6  void Initialize();
7  }
8 }