package com.hypixel.hytale.function.predicate;
public interface TriPredicate<T, R, S> {
boolean test(T var1, R var2, S var3);
}