tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 03 May 2018 21:40:13 +0200
changeset 13370 e202d58236b1
parent 4425 2314bb0c433d
permissions -rw-r--r--
Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text

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

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