tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 15 Feb 2018 18:56:00 +0100
changeset 13015 d92c364f004d
parent 359 59fbfc65fbda
permissions -rw-r--r--
Simplify the status update panel in Trophy Race a lot

#include <QApplication>

#include "mainform.h"

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