tools/templates/main.cpp
author unc0rr
Sun, 05 Apr 2009 17:48:48 +0000
changeset 1946 80030efe89fc
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Fix some CMakeFiles.txt files (by TheXception) - Optimize sprites with optipng

#include <QApplication>

#include "mainform.h"

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