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
329 B
Java
11 lines
329 B
Java
package api.hbm.block;
|
|
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
public interface IBlowable { //sloppy toppy
|
|
|
|
/** Called server-side when a fan blows on an IBlowable in range every tick. */
|
|
public void applyFan(World world, int x, int y, int z, ForgeDirection dir, int dist);
|
|
}
|