2022-08-15 15:57:18 +02:00

17 lines
361 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,
WRENCH
}
}