mirror of
https://github.com/Theta-Dev/ConstructionWand.git
synced 2025-08-06 02:45:26 +02:00
Modular WandActions and WandSuppliers. Wand Cores and Wand Reservoirs can be added to your wand, they determine which action and supplier gets used.
13 lines
442 B
Java
13 lines
442 B
Java
package thetadev.constructionwand.api;
|
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public interface IContainerHandler
|
|
{
|
|
boolean matches(PlayerEntity player, ItemStack itemStack, ItemStack inventoryStack);
|
|
|
|
int countItems(PlayerEntity player, ItemStack itemStack, ItemStack inventoryStack);
|
|
|
|
int useItems(PlayerEntity player, ItemStack itemStack, ItemStack inventoryStack, int count);
|
|
}
|