Hbm-s-Nuclear-Tech-GIT/com/hbm/interfaces/IBulletImpactBehavior.java

12 lines
298 B
Java

package com.hbm.interfaces;
import com.hbm.entity.projectile.EntityBulletBase;
public interface IBulletImpactBehavior {
//block is hit, bullet dies
//also called when an entity is hit but with -1 coords, so beware
public void behaveBlockHit(EntityBulletBase bullet, int x, int y, int z);
}