mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
22 lines
432 B
Java
22 lines
432 B
Java
package com.hbm.interfaces;
|
|
|
|
import com.hbm.handler.FluidTypeHandler.FluidType;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public interface IPartiallyFillable {
|
|
|
|
public FluidType getType(ItemStack stack);
|
|
|
|
public int getFill(ItemStack stack);
|
|
|
|
public void setFill(ItemStack stack, int fill);
|
|
|
|
public int getMaxFill(ItemStack stack);
|
|
|
|
public int getLoadSpeed(ItemStack stack);
|
|
|
|
public int getUnloadSpeed(ItemStack stack);
|
|
|
|
}
|