Clean up ic2 support
This commit is contained in:
parent
7db621fbed
commit
bb5a3e2647
14 changed files with 116 additions and 110 deletions
18
src/main/java/techreborn/api/IC2Helper.java
Normal file
18
src/main/java/techreborn/api/IC2Helper.java
Normal file
|
@ -0,0 +1,18 @@
|
|||
package techreborn.api;
|
||||
|
||||
import net.minecraft.block.state.IBlockState;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.EnumFacing;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface IC2Helper {
|
||||
|
||||
public void initDuplicates();
|
||||
|
||||
public boolean extractSap(EntityPlayer player, World world, BlockPos pos, EnumFacing side, IBlockState state, List<ItemStack> stacks);
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue