tools/templates/main.cpp
author unc0rr
Thu, 16 Oct 2008 16:29:47 +0000
changeset 1365 2ffe20744a4a
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Fix crash when changing maps - Fix message not sent when switching to generated map

#include <QApplication>

#include "mainform.h"

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