2013-04-13 10:35:13 -04: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-05 20:07:38 -05:00
|
|
|
@Deprecated
|
2013-04-13 10:35:13 -04:00
|
|
|
public abstract ItemStack getItem();
|
|
|
|
|
|
|
|
}
|