tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Fri, 06 Oct 2017 14:03:13 +0200
changeset 12661 161c10db4f27
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix teleport allowing you to teleport in land if you clicked beyond the wrap-around border

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

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