2021-02-14 16:53:44 +01:00
|
|
|
package com.minelittlepony.unicopia.projectile;
|
|
|
|
|
|
|
|
import net.minecraft.block.BlockState;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
|
|
|
|
public interface ProjectileDelegate {
|
|
|
|
/**
|
|
|
|
* Called once the projectile lands either hitting the ground or an entity.
|
|
|
|
*/
|
2021-11-08 13:25:59 +01:00
|
|
|
default void onImpact(MagicProjectileEntity projectile, BlockPos pos, BlockState state) {}
|
2021-02-14 16:53:44 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called once the projectile lands either hitting the ground or an entity.
|
|
|
|
*/
|
2021-11-08 13:25:59 +01:00
|
|
|
default void onImpact(MagicProjectileEntity projectile, Entity entity) {}
|
2021-02-14 16:53:44 +01:00
|
|
|
}
|