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