tools/drawMapTest/main.cpp
author koda
Sun, 17 Mar 2013 01:34:24 +0100
changeset 8740 3eb1891f81ef
parent 4425 2314bb0c433d
permissions -rw-r--r--
use a local storage for chat history which prevents mix ups in netgame and simplifies code

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

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