tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 09 Feb 2018 14:56:04 +0100
changeset 12946 ffbd31afed96
parent 4425 2314bb0c433d
permissions -rw-r--r--
HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables

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

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