tools/drawMapTest/main.cpp
author koda
Sun, 12 Feb 2012 15:35:06 +0100
changeset 6675 dab56311daa5
parent 4425 2314bb0c433d
permissions -rw-r--r--
tipped by xeli, ammomenu texture needs to be redrawn on resize to update its position

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

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