tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Fri, 28 Apr 2017 17:56:36 +0200
changeset 12377 efa13b925cd8
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix bullets being reflected too early on bouncy world edge border while digging land

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

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

    return a.exec();
}