Add an API Helper to ChestGUI to allow inplace updating of the stack that was clicked.

This commit is contained in:
zontreck 2024-01-14 19:11:38 -07:00
parent 95405f9e5a
commit c6954add09
7 changed files with 68 additions and 19 deletions

View file

@ -0,0 +1,9 @@
package dev.zontreck.libzontreck.chestgui;
import net.minecraft.world.item.ItemStack;
@FunctionalInterface
public interface IChestGUIButtonCallback
{
void run(ItemStack stack);
}