tools/templates/main.cpp
author Xeli
Thu, 17 May 2012 15:58:04 +0200
changeset 7083 5339aba29571
parent 359 59fbfc65fbda
permissions -rw-r--r--
unbreak android build - export the Game function - fill the ammo store with 0s in the frondend, if we're missing any weapons - use english as default language

#include <QApplication>

#include "mainform.h"

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