package me.kcm; import net.minecraft.entity.player.PlayerEntity; import net.minecraft.inventory.CraftResultInventory; import net.minecraft.inventory.CraftingInventory; import net.minecraft.world.World; @FunctionalInterface public interface Craft { public void onCraft(int id, World w, PlayerEntity p, CraftingInventory cInv, CraftResultInventory slot); }