Entitas  0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
ICompoundMatcher.cs
1 namespace Entitas {
2 
3  public interface ICompoundMatcher<TEntity> : IMatcher<TEntity> where TEntity : class, IEntity, new() {
4 
5  int[] allOfIndices { get; }
6  int[] anyOfIndices { get; }
7  int[] noneOfIndices { get; }
8  }
9 }