tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 23 Mar 2018 03:37:07 +0100
changeset 13273 8f579173b161
parent 4425 2314bb0c433d
permissions -rw-r--r--
The Specialits: Use gfSwitchHog for hog switching and delete the terrible Lua hacks

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

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