tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 20 Jul 2018 02:22:12 +0200
changeset 13520 c5365f05d4de
parent 4425 2314bb0c433d
permissions -rw-r--r--
Refactor storage of joystick SDL key names

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

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