tools/drawMapTest/main.cpp
author Xeli
Thu, 16 Feb 2012 21:32:19 +0100
changeset 6692 029c27660dd2
parent 4425 2314bb0c433d
permissions -rw-r--r--
move the aim buttons to be above the jump button

#include <QtGui/QApplication>
#include "mainwindow.h"

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