tools/drawMapTest/main.cpp
author Xeli
Thu, 17 May 2012 20:01:56 +0200
changeset 7088 dbec9bae4de1
parent 4425 2314bb0c433d
permissions -rw-r--r--
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing

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

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