tools/templates/main.cpp
author sheepluva
Thu, 01 Apr 2010 00:38:02 +0000
changeset 3224 f5f4c611bcac
parent 359 59fbfc65fbda
permissions -rw-r--r--
possible map gen desync "fix" -- test please

#include <QApplication>

#include "mainform.h"

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