mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
26 lines
465 B
Java
26 lines
465 B
Java
package com.hbm.inventory;
|
|
|
|
import com.hbm.inventory.fluid.FluidType;
|
|
|
|
public class FluidStack {
|
|
|
|
public FluidType type;
|
|
public int fill;
|
|
public int pressure;
|
|
|
|
public FluidStack(int fill, FluidType type) {
|
|
this.fill = fill;
|
|
this.type = type;
|
|
}
|
|
|
|
public FluidStack(FluidType type, int fill) {
|
|
this(type, fill, 0);
|
|
}
|
|
|
|
public FluidStack(FluidType type, int fill, int pressure) {
|
|
this.fill = fill;
|
|
this.type = type;
|
|
this.pressure = pressure;
|
|
}
|
|
}
|