Add an API Helper to ChestGUI to allow inplace updating of the stack that was clicked.
This commit is contained in:
parent
95405f9e5a
commit
c6954add09
7 changed files with 68 additions and 19 deletions
|
@ -0,0 +1,9 @@
|
|||
package dev.zontreck.libzontreck.chestgui;
|
||||
|
||||
import net.minecraft.world.item.ItemStack;
|
||||
|
||||
@FunctionalInterface
|
||||
public interface IChestGUIButtonCallback
|
||||
{
|
||||
void run(ItemStack stack);
|
||||
}
|
Reference in a new issue