package kareltherobot;
public class superRobot extends Robot
{		public superRobot(int street, int avenue,
					  Directions.Direction direction, int beepers)
		{		super(street, avenue, direction, beepers);
		}
		
				
				
		public void  turnRight ()
		{		turnLeft();
				turnLeft();
				turnLeft();
		}
		public void turnAround()
		{		turnLeft();
				turnLeft();
		}
		
}	 


