import becker.robots.*;
// WHAT SHOULD YOU PUT HERE????????

public class ICE_05_IO extends Object
{
	public static void main(String[] args)
	{
		int userChoice;
		// WHAT SHOULD YOU PUT HERE????????

		City wallville = new City(10, 10);
		Robot rob = new Robot(wallville, 7, 0, Direction.EAST, 0);
		new Thing(wallville, 7, 0);
		new Thing(wallville, 7, 6);
		new Thing(wallville, 1, 6);
		
		
		System.out.println("Please select from the following options:");
		System.out.println("1 - turn right");
		System.out.println("2 - move");
		System.out.println("3 - quit");
		
		// WHAT SHOULD YOU PUT ON THE NEXT LINE????????
		userChoice = .nextInt();
		
		System.out.println("userInput is: " + userChoice);
		

		if( userChoice == 2)
		{
			rob.move();
		}
	}
}
