Bob 4a395504cd just like 800 errors left
i will build a time machine, go back to the year 2017 and shoot my former self in the head
2022-01-11 23:40:34 +01:00

26 lines
625 B
Java

package com.hbm.inventory;
import com.hbm.inventory.fluid.FluidType;
import net.minecraft.item.ItemStack;
public class FluidContainer {
//The full container (e.g. deuterium cell)
public ItemStack fullContainer;
//Them empty container (e.g. empty cell)
public ItemStack emptyContainer;
//The type of the contained liquid (e.g. deuterium)
public FluidType type;
//The amount of liquid stored in mB (e.g. 1000)
public int content;
public FluidContainer(ItemStack full, ItemStack empty, FluidType type, int amount) {
fullContainer = full;
emptyContainer = empty;
this.type = type;
content = amount;
}
}