tools/drawMapTest/main.cpp
author nemo
Sun, 12 Jun 2011 21:06:48 -0400
changeset 5238 46ddaf14509d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. 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();
}