mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-04-01 08:45:28 +02:00
12 lines
334 B
Java
12 lines
334 B
Java
package baubles.api.cap;
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraftforge.items.IItemHandlerModifiable;
|
|
|
|
/*
|
|
* stub
|
|
*/
|
|
public interface IBaublesItemHandler extends IItemHandlerModifiable {
|
|
boolean isItemValidForSlot(int slot, ItemStack stack, EntityLivingBase player);
|
|
}
|