tools/templates/main.cpp
author unc0rr
Sun, 19 Apr 2009 15:44:47 +0000
changeset 2009 91f461c218ab
parent 359 59fbfc65fbda
permissions -rw-r--r--
TheXception's patch: - Add weapons button to game options widget

#include <QApplication>

#include "mainform.h"

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