001 /** 002 * Copyright (c) SpaceToad, 2011 003 * http://www.mod-buildcraft.com 004 * 005 * BuildCraft is distributed under the terms of the Minecraft Mod Public 006 * License 1.0, or MMPL. Please check the contents of the license located in 007 * http://www.mod-buildcraft.com/MMPL-1.0.txt 008 */ 009 010 package net.minecraftforge.liquids; 011 012 public interface ILiquid { 013 014 public int stillLiquidId(); 015 016 public boolean isMetaSensitive(); 017 018 public int stillLiquidMeta(); 019 020 }