tools/templates/main.cpp
author unc0rr
Sat, 20 Jun 2009 07:50:03 +0000
changeset 2176 fc082baf448c
parent 359 59fbfc65fbda
permissions -rw-r--r--
Don't show enemy's number of ammo

#include <QApplication>

#include "mainform.h"

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