Example usage for net.minecraftforge.fluids FluidStack FluidStack

List of usage examples for net.minecraftforge.fluids FluidStack FluidStack

Introduction

In this page you can find the example usage for net.minecraftforge.fluids FluidStack FluidStack.

Prototype

FluidStack

Source Link

Usage

From source file:de.mineformers.gui.api.component.inventory.UITank.java

License:LGPL

@Override
public void init(PropertyHelper properties) {
    this.fluid = properties.get("fluid", new FluidStack());
    this.maxAmount = properties.get("maxAmount", 8000);
    slot = new UISlot().init("width", width, "height", height);
    this.updateTooltip();
}