#include <stdio.h>

#include "argparser.h"
#include "glCanvas.h"

// =========================================
// =========================================

int main(int argc, char *argv[]) {
  srand48(37);

  ArgParser *args = new ArgParser(argc, argv);

  Grid *grid = new Grid(args);
  GLCanvas glcanvas;
  glcanvas.initialize(args,grid);

  // well it never returns from the GLCanvas loop...
  delete args;
  return 0;

}

// =========================================
// =========================================

