tools/templates/main.cpp
author sheepluva
Mon, 20 Jun 2011 01:28:21 +0200
changeset 5259 926958e3e87b
parent 359 59fbfc65fbda
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 <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}