import becker.robots.*;

/** A program to harvest a field of things 5 columns wide and 6 rows high.
 *
 *  @author Byron Weber Becker */
public class ICE_11_HarvestTask
{
	public static void main (String[] args)
	{
		City stLouis = new City("ICE_11_Harvest.txt");
		ICE_11_Harvester mark = new ICE_11_Harvester (stLouis, 1, 0, Direction.EAST);
		
		mark.move ();
      	mark.harvestField();
		mark.move ();
	}
}

