Entitas  0.35.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
IMatcher.cs
1 namespace Entitas {
2 
3  public interface IMatcher {
4  int[] indices { get; }
5  bool Matches(Entity entity);
6  }
7 }