tools/drawMapTest/main.cpp
author koda
Wed, 03 Jul 2013 01:58:45 +0200
changeset 9311 5baf10a52f43
parent 4425 2314bb0c433d
permissions -rw-r--r--
engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently

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

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