tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 23 Feb 2018 21:06:43 +0100
changeset 13068 dc77c2c679b2
parent 4425 2314bb0c433d
permissions -rw-r--r--
Add szczur's script to convert .hwmap to Lua code

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

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