tools/drawMapTest/main.cpp
author nemo
Sun, 20 Mar 2011 15:00:01 -0400
changeset 5033 46da78d7966b
parent 4425 2314bb0c433d
permissions -rw-r--r--
remove ammo if you suicide in the middle of uses

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

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