/***********************************************************************
 * 
 *  G F O ! 
 *  by Chee Chew
 *      and 
 *     Ken Duda 
 *
 *  (c) 1990
 *
 *  This software is free for distribution.  This notice, however, may 
 *  not be altered.
 *  
 *  Enjoy! (and punt... )
 *
 ***********************************************************************/

#include "gfo.h"

main()
{
  Game *g;
  XC xc;

  x_init(&xc);
  animate(&xc);
  FinishXInit(&xc);
  while(1) {
    show_high_scores(&xc);
    g = (Game *) begin_game(&xc);
    begin_round(g);
    game_loop(g);
  }
}
