tools/drawMapTest/main.cpp
author alfadur
Wed, 12 Sep 2018 19:51:45 +0300
changeset 13776 720dc03600c9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix engine crash when using lasersight outside the world bounds

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

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