tools/templates/main.cpp
author sheepluva
Sun, 02 Jan 2011 13:54:28 +0100
changeset 4807 180dbfb13903
parent 359 59fbfc65fbda
permissions -rw-r--r--
display caption for ammotype amNothing when switched to so that players know what just happened

#include <QApplication>

#include "mainform.h"

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