tools/templates/main.cpp
author nemo
Wed, 22 Dec 2010 23:46:07 -0500
changeset 4640 bc30434ae156
parent 359 59fbfc65fbda
permissions -rw-r--r--
oops. hopefully unbreak maps while still preserving mask behaviour as before (basketball nets etc)

#include <QApplication>

#include "mainform.h"

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