mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
also holy shit the whitespace changes, intelliJ wanted to optimize the imports and refactored a ton of whitespace in the process.
10 lines
274 B
Java
10 lines
274 B
Java
package com.hbm.blocks.network;
|
|
|
|
import com.hbm.inventory.fluid.FluidType;
|
|
import net.minecraft.world.World;
|
|
|
|
public interface IBlockFluidDuct {
|
|
|
|
public void changeTypeRecursively(World world, int x, int y, int z, FluidType prevType, FluidType type, int loopsRemaining);
|
|
}
|