tools/templates/main.cpp
author unc0rr
Sat, 10 Feb 2007 23:37:40 +0000 (2007-02-10)
changeset 428 1052ef2f7863
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix bug with unexpected jumping after use of air attack or construction tool
#include <QApplication>

#include "mainform.h"

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