tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Fri, 06 Oct 2017 17:32:02 +0200
changeset 12659 545e1198e8b9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix camera going crazy when starting game with mouse centered

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

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