2013-04-13 16:35:13 +02:00
|
|
|
package buildcraft.api.gates;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.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);
|
|
|
|
|
2013-11-06 02:07:38 +01:00
|
|
|
@Deprecated
|
2013-04-13 16:35:13 +02:00
|
|
|
public abstract ItemStack getItem();
|
|
|
|
|
|
|
|
}
|