tools/templates/main.cpp
author Xeli
Tue, 28 Feb 2012 22:00:33 +0100
changeset 6751 7c75941b499b
parent 359 59fbfc65fbda
permissions -rw-r--r--
android: fix finding cache dir on prefroyo devices, it now creates the Hedgewars folder if it wasn't there

#include <QApplication>

#include "mainform.h"

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