tools/templates/main.cpp
author smaxx
Sun, 01 Aug 2010 22:05:27 +0200
changeset 3700 fabf387d9055
parent 359 59fbfc65fbda
permissions -rw-r--r--
Graphics: * Added chunk graphics for most themes

#include <QApplication>

#include "mainform.h"

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