tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Mon, 03 Sep 2018 01:09:14 +0200
changeset 13747 52959f686082
parent 359 59fbfc65fbda
permissions -rw-r--r--
Don't start retreat time if hog has lost control in the meantime

#include <QApplication>

#include "mainform.h"

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