tools/templates/main.cpp
author Xeli
Tue, 07 Feb 2012 18:56:49 +0100
changeset 6648 025473a2c420
parent 359 59fbfc65fbda
permissions -rw-r--r--
prevent the cursor from being shown on the mobile version, and close the menu on tap when the tap is not on the ammo menu

#include <QApplication>

#include "mainform.h"

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