Example usage for net.minecraftforge.fluids IFluidTank interface-usage

List of usage examples for net.minecraftforge.fluids IFluidTank interface-usage

Introduction

In this page you can find the example usage for net.minecraftforge.fluids IFluidTank interface-usage.

Usage

From source file aritzh.afm.tileEntity.TEAFMTank.java

/**
 * TEAFMTank
 * 
 * @author aritzh
 * @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
 */

From source file blusunrize.immersiveengineering.common.util.inventory.MultiFluidTank.java

/**
 * @author BluSunrize - 20.02.2017
 */
public class MultiFluidTank implements IFluidTank, IFluidHandler {
    public ArrayList<FluidStack> fluids = new ArrayList<>();
    private final int capacity;

From source file derpatiel.manafluidics.fluid.MultiTank.java

/**
 * Taken and adapted from Tinker's Construct SmelteryTank class under the MIT License
 * This version initially retrieved 10/10/2016 as git hash c660d69..., committed September 28, 2016 from https://github.com/SlimeKnights/TinkersConstruct
 * Modified to work with my smelting tank and class structure, but mostly the same
 */
public class MultiTank implements IFluidTank, IFluidHandler, INBTSerializable<NBTTagCompound> {

From source file hellfirepvp.astralsorcery.common.util.block.PrecisionSingleFluidCapabilityTank.java

/**
 * This class is part of the Astral Sorcery Mod
 * The complete source code for this mod can be found on github.
 * Class: PrecisionSingleFluidCapabilityTank
 * Created by HellFirePvP
 * Date: 10.03.2017 / 16:36

From source file hellfirepvp.astralsorcery.common.util.block.SimpleSingleFluidCapabilityTank.java

/**
 * This class is part of the Astral Sorcery Mod
 * The complete source code for this mod can be found on github.
 * Class: SimpleSingleFluidCapabilityTank
 * Created by HellFirePvP
 * Date: 10.03.2017 / 15:25

From source file matteroverdrive.data.MatterStorage.java

/**
 * Created by Simeon on 8/7/2015.
 */
public class MatterStorage implements IMatterStorage, IFluidTank {
    protected int capacity;
    protected int maxExtract;

From source file org.blockartistry.mod.ThermalRecycling.machines.entity.IMachineFluidTank.java

public interface IMachineFluidTank extends INBTSerializer, IFluidTank {

}