tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 27 Sep 2017 23:41:56 +0200
changeset 12565 392f90c79b78
parent 359 59fbfc65fbda
permissions -rw-r--r--
ASA, death02: Use GetAmmoName for the enemy hog names

#include <QApplication>

#include "mainform.h"

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