tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 31 Jul 2018 00:12:19 +0200
changeset 13576 e5761b37e99c
parent 4425 2314bb0c433d
permissions -rw-r--r--
Lua: Add GetVampiric, GetLaserSight

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

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