package com.hypixel.hytale.function.consumer;
@FunctionalInterface
public interface IntObjectConsumer<T> {
void accept(int var1, T var2);
}