2022-12-13 21:57:05 +01:00

9 lines
159 B
Java

package com.hbm.tileentity;
import net.minecraft.world.World;
public interface IOverpressurable {
public void explode(World world, int x, int y, int z);
}