tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 26 Apr 2017 19:00:32 +0200
changeset 12341 c73521104fac
parent 4425 2314bb0c433d
permissions -rw-r--r--
Mutant: Fix “Boring” taunt being played when becoming the mutant

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

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