tools/drawMapTest/main.cpp
author unC0Rr
Wed, 14 Nov 2018 16:58:22 +0100
changeset 14211 0f7b92397b9e
parent 4425 2314bb0c433d
permissions -rw-r--r--
Parse some synced messages, tests

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

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