package worksheet;

import becker.robots.City;
import becker.robots.Direction;
import becker.robots.Robot;

public class SquarePickup {

    public static void main(String[] args) {

        /*
         * Write the code to make the robot pick up all the things in the
         * square. Start with the Thing directly to the North
         * of the robot, then picking up all the other Things in a
         * counter-clockwise direction.
         * Tips - Check the documentation for the Robots class:
         * Robots can pick up things using the .pickThing() method.
         * Robots can determine if there is a Thing in the intersection or
         * not by using the .canPickThing() method.
         * 
         */

        City city = new City("cityfiles/squarepickup/SquarePickup01.cty");
        Robot bot = new Robot(city, 5, 6, Direction.NORTH);

        

    }
}
