Entitas  0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
ISystem.cs
1 namespace Entitas {
2 
3  /// This is the base interface for all systems.
4  /// It's not meant to be implemented.
5  /// Use IInitializeSystem, IExecuteSystem,
6  /// ICleanupSystem or ITearDownSystem.
7  public interface ISystem {
8  }
9 }