tools/templates/main.cpp
author unc0rr
Mon, 01 May 2017 13:59:24 +0300
branch0.9.22
changeset 12406 7342f5020691
parent 359 59fbfc65fbda
permissions -rw-r--r--
Update racer scripts

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}