tools/templates/main.cpp
author Xeli
Sat, 08 Oct 2011 14:55:13 +0200
branchhedgeroid
changeset 6039 d75329716a02
parent 359 59fbfc65fbda
permissions -rw-r--r--
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/

#include <QApplication>

#include "mainform.h"

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