Newer
Older
Import / applications / HighwayDash / GameSim / main.cpp
@John John on 29 Dec 2020 249 bytes bulk import from macbookpro checkouts
#include <QApplication>
#include "TestVis.h"
//#include "IsoVis.h"


int main(int argc, char* argv[])
{
  QApplication app(argc, argv);
  GameSim sim;
  
  TestVis w(&sim);
  w.show();

/*
  IsoVis w2(&sim);
  w2.show();
 */

  return app.exec();
}