tools/drawMapTest/main.cpp
author Xeli
Tue, 07 Feb 2012 18:56:49 +0100
changeset 6648 025473a2c420
parent 4425 2314bb0c433d
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 <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}