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

7 lines
153 B
Java

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