hytale-server/com/hypixel/hytale/function/consumer/TriIntConsumer.java

7 lines
150 B
Java

package com.hypixel.hytale.function.consumer;
@FunctionalInterface
public interface TriIntConsumer {
void accept(int var1, int var2, int var3);
}