/**
 * 
 */
package net.minecraft.src.weasel.lang;

import net.minecraft.src.NBTTagCompound;
import net.minecraft.src.PC_INBT;
import net.minecraft.src.weasel.InstructionList;
import net.minecraft.src.weasel.Weasel;
import net.minecraft.src.weasel.exception.PauseRequestedException;
import net.minecraft.src.weasel.exception.WeaselRuntimeException;

/**
 * 
 * 
 * @author MightyPork
 *
 */
public class InstructionPush extends Instruction {

	/* (non-Javadoc)
	 * @see net.minecraft.src.PC_INBT#writeToNBT(net.minecraft.src.NBTTagCompound)
	 */
	@Override
	public NBTTagCompound writeToNBT(NBTTagCompound tag) {
		// TODO Auto-generated method stub
		return null;
	}

	/* (non-Javadoc)
	 * @see net.minecraft.src.PC_INBT#readFromNBT(net.minecraft.src.NBTTagCompound)
	 */
	@Override
	public PC_INBT readFromNBT(NBTTagCompound tag) {
		// TODO Auto-generated method stub
		return null;
	}

	/* (non-Javadoc)
	 * @see net.minecraft.src.weasel.lang.Instruction#execute(net.minecraft.src.weasel.Weasel, net.minecraft.src.weasel.InstructionList)
	 */
	@Override
	public void execute(Weasel engine, InstructionList instructionList) throws PauseRequestedException, WeaselRuntimeException {
		// TODO Auto-generated method stub

	}

}
