tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 26 Oct 2018 04:07:35 +0200 (2018-10-26)
changeset 13981 2828ec67c47c
parent 4425 2314bb0c433d
permissions -rw-r--r--
Add PlayMusicSound/StopMusicSound to Lua API
#include <QtGui/QApplication>
#include "mainwindow.h"

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