Removed invalid import of ITextureProvider
This commit is contained in:
parent
62a5cb1bb4
commit
b22facb873
26 changed files with 27 additions and 27 deletions
|
@ -12,7 +12,7 @@ package buildcraft.energy;
|
|||
import net.minecraft.src.Block;
|
||||
import net.minecraft.src.InventoryPlayer;
|
||||
import net.minecraft.src.Item;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
import net.minecraftforge.client.MinecraftForgeClient;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
|
|
@ -11,7 +11,7 @@ package buildcraft.energy;
|
|||
|
||||
import buildcraft.BuildCraftEnergy;
|
||||
import buildcraft.core.TextureLiquidsFX;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class TextureFuelFX extends TextureLiquidsFX {
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ package buildcraft.energy;
|
|||
|
||||
import buildcraft.BuildCraftEnergy;
|
||||
import buildcraft.core.TextureLiquidsFX;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class TextureOilFX extends TextureLiquidsFX {
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ import net.minecraft.src.ModelRenderer;
|
|||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.TileEntitySpecialRenderer;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
import net.minecraftforge.client.MinecraftForgeClient;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
|
|
@ -17,7 +17,7 @@ import net.minecraft.src.Item;
|
|||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.TileEntitySpecialRenderer;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
import net.minecraftforge.client.MinecraftForgeClient;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
|
|
@ -24,10 +24,10 @@ import net.minecraft.src.Tessellator;
|
|||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.TileEntitySpecialRenderer;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ForgeHooksClient;
|
||||
import net.minecraftforge.client.ForgeHooksClient;
|
||||
import net.minecraftforge.client.IItemRenderer;
|
||||
import net.minecraftforge.client.IItemRenderer.ItemRenderType;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
import net.minecraftforge.client.MinecraftForgeClient;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
|
|
@ -29,7 +29,7 @@ import net.minecraft.src.ItemStack;
|
|||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockArchitect extends BlockContainer implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ import net.minecraft.src.ItemStack;
|
|||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockBlueprintLibrary extends BlockContainer implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ import net.minecraft.src.ItemStack;
|
|||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockBuilder extends BlockContainer implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ import net.minecraft.src.ItemStack;
|
|||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockFiller extends BlockContainer implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ import net.minecraft.src.MovingObjectPosition;
|
|||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.Vec3;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockMarker extends BlockContainer implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import java.util.Random;
|
|||
import net.minecraft.src.BlockContainer;
|
||||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public abstract class BlockBuildCraft extends BlockContainer implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ package buildcraft.core;
|
|||
import buildcraft.core.utils.StringUtil;
|
||||
import net.minecraft.src.Item;
|
||||
import net.minecraft.src.ItemStack;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class ItemBuildCraft extends Item implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ import net.minecraft.src.Block;
|
|||
import net.minecraft.src.BlockFluid;
|
||||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockOilFlowing extends BlockFluid implements ITextureProvider, ILiquid {
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ import buildcraft.core.DefaultProps;
|
|||
import net.minecraft.src.BlockStationary;
|
||||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockOilStill extends BlockStationary implements ITextureProvider, ILiquid {
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ import net.minecraft.src.BlockContainer;
|
|||
import net.minecraft.src.IBlockAccess;
|
||||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockPollution extends BlockContainer implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ import buildcraft.core.DefaultProps;
|
|||
import buildcraft.core.utils.StringUtil;
|
||||
import net.minecraft.src.ItemBucket;
|
||||
import net.minecraft.src.ItemStack;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class ItemBucketOil extends ItemBucket implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ import net.minecraft.src.Material;
|
|||
import net.minecraft.src.MovingObjectPosition;
|
||||
import net.minecraft.src.Vec3;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockFrame extends Block implements IFramePipeConnection, ITextureProvider {
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ import net.minecraft.src.ItemStack;
|
|||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockMiningWell extends BlockMachineRoot implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ import net.minecraft.src.Block;
|
|||
import net.minecraft.src.IBlockAccess;
|
||||
import net.minecraft.src.ItemStack;
|
||||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockPlainPipe extends Block implements IFramePipeConnection, ITextureProvider {
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ import net.minecraft.src.ItemStack;
|
|||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockPump extends BlockContainer implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ import net.minecraft.src.ItemStack;
|
|||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockQuarry extends BlockMachineRoot implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ import net.minecraft.src.ItemStack;
|
|||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockTank extends BlockContainer implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ import net.minecraft.src.ItemStack;
|
|||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockAssemblyTable extends BlockContainer implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ import net.minecraft.src.ItemStack;
|
|||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockLaser extends BlockContainer implements ITextureProvider {
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ import net.minecraft.src.MovingObjectPosition;
|
|||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.Vec3;
|
||||
import net.minecraft.src.World;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
|
||||
public class BlockGenericPipe extends BlockContainer implements ITextureProvider {
|
||||
|
||||
|
|
Loading…
Reference in a new issue