tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Wed, 02 Sep 2015 04:03:24 +0200
changeset 11060 506b6184f4af
parent 11015 7a905f0070ce
permissions -rw-r--r--
fix on-code documentation of EraseSprite

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

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

    return a.exec();
}