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