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

9 lines
243 B
Java

package WayofTime.alchemicalWizardry.api.spell;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
public interface IMeleeSpellEntityEffect
{
void onEntityImpact(World world, EntityPlayer entityPlayer);
}