tools/templates/main.cpp
author unc0rr
Thu, 09 Oct 2008 15:54:09 +0000
changeset 1333 b0b0510eb82d
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Fix a bug with chosen map (new clinet gets wrong information) - Fix mapContainer bug when switching quickly from random map to a painted one

#include <QApplication>

#include "mainform.h"

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