mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
20 lines
327 B
Java
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;
|
|
}
|
|
}
|