2014-01-17 19:12:49 +00:00
|
|
|
package thaumcraft.api.wands;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author azanor
|
2014-01-17 21:05:38 +00:00
|
|
|
* <p/>
|
|
|
|
* Implemented by a class that you wish to be called whenever a wand with this rod performs its
|
|
|
|
* update tick.
|
2014-01-17 19:12:49 +00:00
|
|
|
*/
|
2014-01-17 21:43:13 +00:00
|
|
|
public interface IWandRodOnUpdate
|
|
|
|
{
|
2014-01-17 19:12:49 +00:00
|
|
|
void onUpdate(ItemStack itemstack, EntityPlayer player);
|
|
|
|
}
|