You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.1 KiB
26 lines
1.1 KiB
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// 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.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
public sealed partial class CombatMatcher {
|
|
|
|
public static Entitas.IAllOfMatcher<CombatEntity> AllOf(params int[] indices) {
|
|
return Entitas.Matcher<CombatEntity>.AllOf(indices);
|
|
}
|
|
|
|
public static Entitas.IAllOfMatcher<CombatEntity> AllOf(params Entitas.IMatcher<CombatEntity>[] matchers) {
|
|
return Entitas.Matcher<CombatEntity>.AllOf(matchers);
|
|
}
|
|
|
|
public static Entitas.IAnyOfMatcher<CombatEntity> AnyOf(params int[] indices) {
|
|
return Entitas.Matcher<CombatEntity>.AnyOf(indices);
|
|
}
|
|
|
|
public static Entitas.IAnyOfMatcher<CombatEntity> AnyOf(params Entitas.IMatcher<CombatEntity>[] matchers) {
|
|
return Entitas.Matcher<CombatEntity>.AnyOf(matchers);
|
|
}
|
|
}
|
|
|