import java.io.*;
import java.util.*;


/**
 * A robot that can execute instructions
 */
public class Bender extends Robot
{
    /**
     * Explicit Value Constructor
     */
    public Bender(boolean show)
    {
       super(show);       
    }


    /**
     * Execute a set of instructions (i.e., loop through a 
     * Vector of Direction objects, moving in that Direction)
     *
     * @param method   The collection of instructions
     */
    public void execute(List<Direction> method)
    {

    }
    

    

    /**
     * Start the Robot
     */
    public void start()
    {
       // Nothing to do
    }
    
    
    

}
