2022-01-06 00:24:55 +01:00

16 lines
351 B
Java

package api.hbm.block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
public interface IToolable {
public boolean onScrew(World world, EntityPlayer player, int x, int y, int z, int side, float fX, float fY, float fZ, ToolType tool);
public static enum ToolType {
SCREWDRIVER,
HAND_DRILL,
DEFUSER
}
}