tools/templates/main.cpp
author unc0rr
Mon, 19 Nov 2012 17:41:09 +0400
changeset 8067 34a679e5ca9d
parent 359 59fbfc65fbda
permissions -rw-r--r--
Link some libraries needed for physfs on windows (there are still 5 symbols which couldn't be found - to be resolved)

#include <QApplication>

#include "mainform.h"

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