blob: b3b215dc3bd410b0d5a96602c8816fb9ed5cdf80 [file] [log] [blame] [raw]
package buildcraft.api.gates;
import net.minecraft.src.ItemStack;
import net.minecraft.src.NBTTagCompound;
public interface ITriggerParameter {
public abstract ItemStack getItemStack();
public abstract void set(ItemStack stack);
public abstract void writeToNBT(NBTTagCompound compound);
public abstract void readFromNBT(NBTTagCompound compound);
public abstract ItemStack getItem();
}