tools/templates/main.cpp
author koda
Thu, 28 Feb 2013 22:47:42 +0100
changeset 8608 50cc0131b109
parent 359 59fbfc65fbda
permissions -rw-r--r--
move weapons line away from hwconsts.h so that modifying it doesn't needlessly recompile everything, introduce a way to try documenting which weapons each number represents

#include <QApplication>

#include "mainform.h"

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