tools/drawMapTest/main.cpp
author sheepluva
Tue, 18 Oct 2011 15:34:40 +0200
changeset 6149 0b92341adb6a
parent 4425 2314bb0c433d
permissions -rw-r--r--
+ don't suggest ignored nicknames * whipe data properly when lobby is left

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

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