
/**
 * This application starts the Clicker window.
 * @author Nancy Harris
 *
 */
public class ClickerDriver
{

    /** 
     * Main starts the window. Everything after the window is created is
     * controlled by actions of the user.
     * @param args unused in this application
     */
    public static void main(String[] args) 
    {
            Clicker myWindow = new Clicker("Clicker");
            myWindow.setSize(350,100);
            myWindow.setVisible(true);
    }

}
