tools/templates/main.cpp
author unc0rr
Sun, 30 Aug 2015 17:12:12 +0300
changeset 11055 c1c3f86af19e
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix inverse paused state for spectators joining paused game (not tested)

#include <QApplication>

#include "mainform.h"

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