tools/drawMapTest/main.cpp
author Xeli
Sun, 18 Mar 2012 18:19:20 +0100
changeset 6802 8701007d58c0
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix ammomenu, the cursor actually works now -_-

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

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