tools/templates/main.cpp
author unc0rr
Tue, 22 May 2007 16:31:59 +0000
changeset 518 d48d8c0a546d
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Fix bug with desert damaging current hedgehog - Pass string as 'const' parameters

#include <QApplication>

#include "mainform.h"

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