mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
14 lines
415 B
Java
14 lines
415 B
Java
package com.hbm.interfaces;
|
|
|
|
import com.hbm.handler.FluidTypeHandler.FluidType;
|
|
|
|
public interface IFluidContainer {
|
|
|
|
//Args: fill, what the fill should be set to; index, index for array if there are multiple tanks
|
|
public void setFillstate(int fill, int index);
|
|
|
|
//Args: type, what the type should be set to; index, index for array if there are multiple tanks
|
|
public void setType(FluidType type, int index);
|
|
|
|
}
|