BloodMagic/src/main/java/WayofTime/alchemicalWizardry/api/spell/IMeleeSpellEntityEffect.java

10 lines
250 B
Java
Raw Normal View History

package WayofTime.alchemicalWizardry.api.spell;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
2014-10-13 22:33:20 +02:00
public interface IMeleeSpellEntityEffect
{
2014-10-13 22:33:20 +02:00
public void onEntityImpact(World world, EntityPlayer entityPlayer);
}