tools/templates/main.cpp
author unc0rr
Tue, 04 Mar 2008 20:23:23 +0000
changeset 793 c4a790225799
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Massive images update by Tiyuri - New theme 'nature' by Tiyury - Some ajustment for new graphics in engine by me

#include <QApplication>

#include "mainform.h"

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