tools/drawMapTest/main.cpp
author sheepluva
Sat, 10 Sep 2011 14:10:14 +0200
changeset 5836 6d6041b50b09
parent 4425 2314bb0c433d
permissions -rw-r--r--
some sniper training improvements and few german lua translations

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

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