Boblet bd2063c86f The great fluid engoodening part 4
i think that's enough for today
2022-01-14 15:17:07 +01:00

18 lines
377 B
Java

package com.hbm.interfaces;
import java.util.List;
import com.hbm.inventory.fluid.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);
}