tools/drawMapTest/main.cpp
author nemo
Tue, 13 Sep 2011 10:30:39 -0400
changeset 5888 523f45d02ccb
parent 4425 2314bb0c433d
permissions -rw-r--r--
Still haven't received updated lt ts file, but no reason that the .txt and .lua shouldn't get used

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

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