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


int main(int argc, char* argv[])
{
  QApplication app(argc, argv);
  GameSim sim;
  GameVis vis(&sim);
  vis.show();
  return app.exec();
}