import java.util.*;

/**
  * the class that forms structure so that words can be displayed
  *
  * @author Aleksey Babeyev,Jim Congdon,Eric Hwuang,Corey Miller, & Jack Wen
  * @see HarpoonGUI
  * @see Controller
  */
public class Harpoon
{
  /**
    * create new Harpoon
    */
  public Harpoon() 
  {
    // nothing here
  }

  /**
    * run the show, display GUI, process
    */
  public static void main(String args[])
  {
    Harpoon h = new Harpoon();
    Controller con = new Controller(h);
    HarpoonGUI gui = new HarpoonGUI(con);
    con.AddGui(gui);
  }
}
