tools/drawMapTest/main.cpp
author unc0rr
Sun, 16 Mar 2014 00:47:18 +0400
changeset 10199 fdb689b57b1b
parent 4425 2314bb0c433d
permissions -rw-r--r--
Some progress on new generator

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

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