tools/drawMapTest/main.cpp
author sheepluva
Mon, 20 Jun 2011 01:28:21 +0200
changeset 5259 926958e3e87b
parent 4425 2314bb0c433d
permissions -rw-r--r--
display player count below and with label, just because it's funny to mess with unC0Rr's code and make him cry :P

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

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