tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Sat, 08 Apr 2017 18:36:12 +0200
changeset 12192 de9144250c37
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add gear gtDuck: rubber duck Properties: - Falls straight down - Swims on water and follows wind direction - Follows Sea world edge - Explodes on collision or after 9s - Timer resets when hitting water

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

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

    return a.exec();
}