tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 31 Jul 2018 22:26:53 +0200
changeset 13585 dc4ce9f486b0
parent 11015 7a905f0070ce
permissions -rw-r--r--
Refactor colors and caption type in Space Invasion

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

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

    return a.exec();
}