tools/templates/main.cpp
author koda
Mon, 25 Feb 2013 19:48:35 +0100
branchphysfslayer
changeset 8558 e96bf10216ef
parent 359 59fbfc65fbda
permissions -rw-r--r--
on windows fpc-linking is the funniest of all

#include <QApplication>

#include "mainform.h"

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