tools/hwmap2txt/hwmapconverter/main.cpp
author koda
Sat, 14 Nov 2015 02:57:00 +0100
branchsdl2transition
changeset 11375 7d0511a3cff8
parent 11015 7a905f0070ce
permissions -rw-r--r--
SDLh: Remove linking from file This is not needed any more.

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

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

    return a.exec();
}