12 lines
354 B
Java
12 lines
354 B
Java
package thaumcraft.api.wands;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.world.World;
|
|
|
|
public interface IWandTriggerManager
|
|
{
|
|
public boolean performTrigger(World world, ItemStack wand, EntityPlayer player,
|
|
int x, int y, int z, int side, int event);
|
|
}
|