mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
20 lines
442 B
Java
20 lines
442 B
Java
package com.hbm.interfaces;
|
|
|
|
import java.util.List;
|
|
|
|
import com.hbm.handler.FluidTypeHandler.FluidType;
|
|
|
|
public interface IFluidSource {
|
|
|
|
void fillFluidInit(FluidType type);
|
|
|
|
void fillFluid(int x, int y, int z, boolean newTact, FluidType type);
|
|
|
|
boolean getTact();
|
|
int getSFluidFill(FluidType type);
|
|
void setSFluidFill(int i, FluidType type);
|
|
List<IFluidAcceptor> getFluidList(FluidType type);
|
|
void clearFluidList(FluidType type);
|
|
|
|
}
|