mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
Added IBlowable for fan; created TE for a piston-based inserter (IInsertable). The former will improve cooling for pile setups and the latter will allow for automation, in combination with comparator output for pile fuel.
11 lines
290 B
Java
11 lines
290 B
Java
package api.hbm.block;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
public interface IInsertable { //uwu
|
|
|
|
public boolean insertItem(World world, int x, int y, int z, ForgeDirection dir, ItemStack stack);
|
|
}
|