//------------------------------------------------------------------------------
//
// This code was generated by Entitas.CodeGeneration.Plugins.ContextMatcherGenerator.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
public sealed partial class CombatMatcher {
public static Entitas.IAllOfMatcher AllOf(params int[] indices) {
return Entitas.Matcher.AllOf(indices);
}
public static Entitas.IAllOfMatcher AllOf(params Entitas.IMatcher[] matchers) {
return Entitas.Matcher.AllOf(matchers);
}
public static Entitas.IAnyOfMatcher AnyOf(params int[] indices) {
return Entitas.Matcher.AnyOf(indices);
}
public static Entitas.IAnyOfMatcher AnyOf(params Entitas.IMatcher[] matchers) {
return Entitas.Matcher.AnyOf(matchers);
}
}