tools/drawMapTest/main.cpp
author sheepluva
Tue, 18 Oct 2011 00:13:50 +0200
changeset 6146 c7c2dd71ced4
parent 4425 2314bb0c433d
permissions -rw-r--r--
server lobby: don't stretch buttons right of the roomlist - instead let the roomlist use all the available space

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

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