diff --git a/api/buildcraft/api/boards/BoardParameter.java b/api/buildcraft/api/boards/BoardParameter.java deleted file mode 100755 index 72074f86..00000000 --- a/api/buildcraft/api/boards/BoardParameter.java +++ /dev/null @@ -1,13 +0,0 @@ -/** - * Copyright (c) 2011-2014, SpaceToad and the BuildCraft Team - * http://www.mod-buildcraft.com - * - * BuildCraft is distributed under the terms of the Minecraft Mod Public - * License 1.0, or MMPL. Please check the contents of the license located in - * http://www.mod-buildcraft.com/MMPL-1.0.txt - */ -package buildcraft.api.boards; - -public class BoardParameter { - -} diff --git a/api/buildcraft/api/boards/IRedstoneBoardNBT.java b/api/buildcraft/api/boards/IRedstoneBoardNBT.java deleted file mode 100755 index 666f3354..00000000 --- a/api/buildcraft/api/boards/IRedstoneBoardNBT.java +++ /dev/null @@ -1,43 +0,0 @@ -/** - * Copyright (c) 2011-2014, SpaceToad and the BuildCraft Team - * http://www.mod-buildcraft.com - * - * BuildCraft is distributed under the terms of the Minecraft Mod Public - * License 1.0, or MMPL. Please check the contents of the license located in - * http://www.mod-buildcraft.com/MMPL-1.0.txt - */ -package buildcraft.api.boards; - -import java.util.List; -import java.util.Random; - -import net.minecraft.client.renderer.texture.IIconRegister; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.IIcon; - -import cpw.mods.fml.relauncher.Side; -import cpw.mods.fml.relauncher.SideOnly; - -public interface IRedstoneBoardNBT { - - String getID(); - - void addInformation(ItemStack stack, EntityPlayer player, List list, boolean advanced); - - IRedstoneBoard create(NBTTagCompound nbt); - - @SideOnly(Side.CLIENT) - void registerIcons(IIconRegister iconRegister); - - @SideOnly(Side.CLIENT) - IIcon getIcon(NBTTagCompound nbt); - - BoardParameter[] getParameters(); - - void setParameters(BoardParameter[] parameters); - - void createRandomBoard(NBTTagCompound nbt, Random rand); - -} diff --git a/api/buildcraft/api/boards/IRedstoneBoardRobotNBT.java b/api/buildcraft/api/boards/IRedstoneBoardRobotNBT.java deleted file mode 100755 index db0a11b1..00000000 --- a/api/buildcraft/api/boards/IRedstoneBoardRobotNBT.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright (c) 2011-2014, SpaceToad and the BuildCraft Team - * http://www.mod-buildcraft.com - * - * BuildCraft is distributed under the terms of the Minecraft Mod Public - * License 1.0, or MMPL. Please check the contents of the license located in - * http://www.mod-buildcraft.com/MMPL-1.0.txt - */ -package buildcraft.api.boards; - -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.ResourceLocation; - -public interface IRedstoneBoardRobotNBT extends IRedstoneBoardNBT { - - @Override - IRedstoneBoardRobot create(NBTTagCompound nbt); - - ResourceLocation getRobotTexture(); - -} diff --git a/buildcraft_resources/assets/buildcraft/textures/gui/generic_ui.png b/buildcraft_resources/assets/buildcraft/textures/gui/generic_ui.png index 9784b1d2..4a0d47bf 100755 Binary files a/buildcraft_resources/assets/buildcraft/textures/gui/generic_ui.png and b/buildcraft_resources/assets/buildcraft/textures/gui/generic_ui.png differ