aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/IBlockOnWalkOver.java
blob: 8957f3bbbcf49ea0edc578569b979e6d10903a4f (plain)
1
2
3
4
5
6
7
8
package gregtech.api.interfaces;

import net.minecraft.entity.EntityLivingBase;
import net.minecraft.world.World;

public interface IBlockOnWalkOver {
    void onWalkOver(EntityLivingBase aEntity, World aWorld, int aX, int aY, int aZ);
}