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