20 lines
327 B
Java

package com.hbm.inventory;
import com.hbm.inventory.fluid.FluidType;
public class FluidStack {
public int fill;
public FluidType type;
public FluidStack(int fill, FluidType type) {
this.fill = fill;
this.type = type;
}
public FluidStack(FluidType type, int fill) {
this.fill = fill;
this.type = type;
}
}