/***********************************************************************
 *
 * Sample Main Program for Frogger
 *
 * NOTE: it does very little.
 * It's job is to start things going.
*/public class Play {

   public static void main(String[] args) {

      easyCurses display = new easyCurses(30,100);  // THE WINDOW  
      GameAI AI = new GameAI(display);  // THE AI
      
      AI.play();                              // play the game
      
      display.dispose();              // get rid of the window
	  System.out.print("\n\nDONE.\n");
      System.exit(0);                         //quit

    }
}
