tools/templates/main.cpp
author unc0rr
Sun, 11 May 2008 19:30:40 +0000
changeset 927 2c1675344a6f
parent 359 59fbfc65fbda
permissions -rw-r--r--
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed

#include <QApplication>

#include "mainform.h"

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