tools/drawMapTest/main.cpp
author sheepluva
Sat, 18 May 2013 22:42:05 +0200
changeset 9012 18c41c0ee8de
parent 4425 2314bb0c433d
permissions -rw-r--r--
changing slots of landgun and icegun, feel free to complain, improve and/or revert

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

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