summaryrefslogtreecommitdiff
path: root/ihl/interfaces/IDataCableHolder.java
blob: 1bdaba1406921e917d5d4c514cffeabafe96f8d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package ihl.interfaces;

import ihl.datanet.Contact;
import ihl.processing.invslots.InvSlotSignalProcessor;

import java.util.Set;

import net.minecraft.entity.EntityLivingBase;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;

public interface IDataCableHolder extends ICableHolder
{
	boolean addDataCable(NBTTagCompound cable);
	Contact[] getContacts(int chainUID);
	void removeCable(int chainUID);
	Contact getContact(int innerId1);
}