Entitas  0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
IReactiveSystem.cs
1 namespace Entitas {
2 
3  public interface IReactiveSystem : IExecuteSystem {
4 
5  void Activate();
6  void Deactivate();
7  void Clear();
8  }
9 }