hytale-server/com/hypixel/hytale/function/predicate/BiIntPredicate.java

7 lines
142 B
Java

package com.hypixel.hytale.function.predicate;
@FunctionalInterface
public interface BiIntPredicate {
boolean test(int var1, int var2);
}