mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
16 lines
351 B
Java
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
|
|
}
|
|
}
|