tools/templates/main.cpp
author nemo
Mon, 30 Dec 2013 14:56:47 -0500
branch0.9.20
changeset 9881 749369ad65a9
parent 359 59fbfc65fbda
permissions -rw-r--r--
merge safe fixes from default. physfs include order, tips file length check, server checker fixes, shoppa border fix, land drawing optimisations, physfs off by 1 (probably unused by us), rubber svg image

#include <QApplication>

#include "mainform.h"

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