tools/drawMapTest/main.cpp
author nemo
Wed, 07 Sep 2011 20:12:20 -0400
changeset 5800 3a04c30e5ac7
parent 4425 2314bb0c433d
permissions -rw-r--r--
NEEDS TESTING. Try reenabling camera shake based on unc0rr's comment.

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

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