Mark old liquid system as deperated to be removed next Minecraft release.
This commit is contained in:
parent
30be6d4bab
commit
e9f1c83ff8
10 changed files with 10 additions and 4 deletions
|
@ -8,6 +8,7 @@ import net.minecraft.nbt.NBTTagCompound;
|
||||||
* @author cpw
|
* @author cpw
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@Deprecated //See new net.minecraftforge.fluids
|
||||||
public interface IBlockLiquid extends ILiquid {
|
public interface IBlockLiquid extends ILiquid {
|
||||||
/**
|
/**
|
||||||
* Controls the type of block that is generated by this IBlockLiquid
|
* Controls the type of block that is generated by this IBlockLiquid
|
||||||
|
|
|
@ -13,6 +13,7 @@ package net.minecraftforge.liquids;
|
||||||
* Liquids implement this interface
|
* Liquids implement this interface
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@Deprecated //See new net.minecraftforge.fluids
|
||||||
public interface ILiquid {
|
public interface ILiquid {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -5,6 +5,7 @@ package net.minecraftforge.liquids;
|
||||||
*
|
*
|
||||||
* @author cpw
|
* @author cpw
|
||||||
*/
|
*/
|
||||||
|
@Deprecated //See new net.minecraftforge.fluids
|
||||||
public interface ILiquidTank {
|
public interface ILiquidTank {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package net.minecraftforge.liquids;
|
package net.minecraftforge.liquids;
|
||||||
|
|
||||||
import net.minecraftforge.common.ForgeDirection;
|
import net.minecraftforge.common.ForgeDirection;
|
||||||
|
@Deprecated //See new net.minecraftforge.fluids
|
||||||
public interface ITankContainer {
|
public interface ITankContainer {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -11,7 +11,7 @@ package net.minecraftforge.liquids;
|
||||||
|
|
||||||
import net.minecraft.item.Item;
|
import net.minecraft.item.Item;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
|
@Deprecated //See new net.minecraftforge.fluids
|
||||||
public class LiquidContainerData {
|
public class LiquidContainerData {
|
||||||
|
|
||||||
public final LiquidStack stillLiquid;
|
public final LiquidStack stillLiquid;
|
||||||
|
|
|
@ -12,7 +12,7 @@ import java.util.Set;
|
||||||
import net.minecraft.block.Block;
|
import net.minecraft.block.Block;
|
||||||
import net.minecraft.item.Item;
|
import net.minecraft.item.Item;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
|
@Deprecated //See new net.minecraftforge.fluids
|
||||||
public class LiquidContainerRegistry
|
public class LiquidContainerRegistry
|
||||||
{
|
{
|
||||||
public static final int BUCKET_VOLUME = 1000;
|
public static final int BUCKET_VOLUME = 1000;
|
||||||
|
|
|
@ -16,6 +16,7 @@ import com.google.common.collect.ImmutableMap;
|
||||||
*
|
*
|
||||||
* @author CovertJaguar <railcraft.wikispaces.com>
|
* @author CovertJaguar <railcraft.wikispaces.com>
|
||||||
*/
|
*/
|
||||||
|
@Deprecated //See new net.minecraftforge.fluids
|
||||||
public abstract class LiquidDictionary
|
public abstract class LiquidDictionary
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ import net.minecraft.tileentity.TileEntity;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
import net.minecraftforge.common.MinecraftForge;
|
import net.minecraftforge.common.MinecraftForge;
|
||||||
import net.minecraftforge.event.Event;
|
import net.minecraftforge.event.Event;
|
||||||
|
@Deprecated //See new net.minecraftforge.fluids
|
||||||
public class LiquidEvent extends Event {
|
public class LiquidEvent extends Event {
|
||||||
public final LiquidStack liquid;
|
public final LiquidStack liquid;
|
||||||
public final int x;
|
public final int x;
|
||||||
|
|
|
@ -22,6 +22,7 @@ import net.minecraft.util.Icon;
|
||||||
*
|
*
|
||||||
* @author SirSengir
|
* @author SirSengir
|
||||||
*/
|
*/
|
||||||
|
@Deprecated //See new net.minecraftforge.fluids
|
||||||
public class LiquidStack
|
public class LiquidStack
|
||||||
{
|
{
|
||||||
public final int itemID;
|
public final int itemID;
|
||||||
|
|
|
@ -6,6 +6,7 @@ import net.minecraft.tileentity.TileEntity;
|
||||||
/**
|
/**
|
||||||
* Reference implementation of ILiquidTank. Use this or implement your own.
|
* Reference implementation of ILiquidTank. Use this or implement your own.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated //See new net.minecraftforge.fluids
|
||||||
public class LiquidTank implements ILiquidTank {
|
public class LiquidTank implements ILiquidTank {
|
||||||
private LiquidStack liquid;
|
private LiquidStack liquid;
|
||||||
private int capacity;
|
private int capacity;
|
||||||
|
|
Loading…
Reference in a new issue