11 lines
263 B
Java
11 lines
263 B
Java
package WayofTime.alchemicalWizardry.api.spell;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.world.World;
|
|
|
|
public interface IOnSummonTool
|
|
{
|
|
int onSummonTool(ItemStack toolStack, World world, Entity entity);
|
|
}
|