tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Fri, 11 Sep 2015 03:50:32 +0200
changeset 11640 4865e715fb49
parent 4425 2314bb0c433d
permissions -rw-r--r--
Hedge Editor: Also allow to set health of barrels and health crates in Health Modification Mode

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

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