tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 26 Oct 2017 05:41:48 +0200
changeset 12777 b6deecd79d27
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix German typo in de.lua

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

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