/**
 * An example that uses the EtcherSketcher to draw the Way icon
 *
 * @author  Prof. David Bernstein, James Madison University
 * @version 1.0
 */
public class EtcherSketcherDriver
{
    /**
     * The entry point
     *
     * @param args   The command line arguments
     */
    public static void main(String[] args)
    {
       EtcherSketcher    es;
       WayIconSubject    subject;
       WayWindow         window;
       

       es = new EtcherSketcher();
       subject = new WayIconSubject();
       subject.addPointObserver(es);
       
       window = new WayWindow(es);
       

       subject.start();
       
    }
    
}
