2014-11-13 13:42:49 +00:00
|
|
|
package WayofTime.alchemicalWizardry.api.spell;
|
2014-06-27 23:43:09 +00:00
|
|
|
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.util.MovingObjectPosition;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2014-10-13 20:33:20 +00:00
|
|
|
public interface IProjectileImpactEffect
|
2014-06-27 23:43:09 +00:00
|
|
|
{
|
2014-10-13 20:33:20 +00:00
|
|
|
public void onEntityImpact(Entity mop, Entity projectile);
|
|
|
|
|
|
|
|
public void onTileImpact(World world, MovingObjectPosition mop);
|
2014-06-27 23:43:09 +00:00
|
|
|
}
|