tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 24 Mar 2018 23:57:54 +0100
changeset 13280 e469de43aa67
parent 4425 2314bb0c433d
permissions -rw-r--r--
Update German Lua translation

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

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