Craft.java 361 B

1234567891011
  1. package me.kcm;
  2. import net.minecraft.entity.player.PlayerEntity;
  3. import net.minecraft.inventory.CraftResultInventory;
  4. import net.minecraft.inventory.CraftingInventory;
  5. import net.minecraft.world.World;
  6. @FunctionalInterface
  7. public interface Craft {
  8. public void onCraft(int id, World w, PlayerEntity p, CraftingInventory cInv, CraftResultInventory slot);
  9. }