Newer
Older
Import / applications / HighwayDash / Tools / Editor / main.cpp
@John Ryland John Ryland on 22 Dec 2020 234 bytes import NUC files
/*
    This file is Copyright.
    (C) Copyright 2016
    John Ryland
*/
#include <QApplication>
#include "Editor.h"


int main(int argc, char* argv[])
{
  QApplication app(argc, argv);
  Editor e;
  e.show();
  return app.exec();
}