tools/drawMapTest/main.cpp
author nemo
Thu, 16 Dec 2010 15:26:19 -0500
changeset 4546 a6402b8c2b24
parent 4425 2314bb0c433d
permissions -rw-r--r--
oops, forgot world offset, also add a kind of hack to the already hackish set function for visual gears

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

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