Hbm-s-Nuclear-Tech-GIT/com/hbm/interfaces/IBulletImpactBehavior.java
2020-03-14 22:01:03 +01:00

11 lines
231 B
Java

package com.hbm.interfaces;
import com.hbm.entity.projectile.EntityBulletBase;
public interface IBulletImpactBehavior {
//block is hit, bullet dies
public void behaveBlockHit(EntityBulletBase bullet, int x, int y, int z);
}