tools/templates/main.cpp
author sheepluva
Thu, 01 Apr 2010 08:26:16 +0000
changeset 3231 a578cbf5d543
parent 359 59fbfc65fbda
permissions -rw-r--r--
* fix SmokeTrace and EvilTrace to be centered instead of 2 pixel off * ran "optipng -o5 -np -nc -nb *.png" on Data/Graphics

#include <QApplication>

#include "mainform.h"

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