tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 05 Oct 2018 19:25:14 +0200
changeset 13857 e7c69e849005
parent 4425 2314bb0c433d
permissions -rw-r--r--
Don't save default weapon scheme in file; don't load weapon scheme from file if name collides with default scheme

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

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