tools/templates/main.cpp
author unc0rr
Tue, 22 Jul 2008 18:31:34 +0000
changeset 1085 0b82870073b5
parent 359 59fbfc65fbda
permissions -rw-r--r--
Load flakes information from theme.cfg when playing painted map

#include <QApplication>

#include "mainform.h"

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