tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Sat, 30 Sep 2017 02:09:43 +0200
changeset 12606 f1e0fa009eb7
parent 4425 2314bb0c433d
permissions -rw-r--r--
ACF1: Change rope challenge confirm key to [Attack]

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

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