tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 15 Mar 2018 15:49:17 +0100
changeset 13224 b229b3259a76
parent 359 59fbfc65fbda
permissions -rw-r--r--
Mutant: Fix graph title on game draw

#include <QApplication>

#include "mainform.h"

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