tools/templates/main.cpp
author unc0rr
Mon, 20 Aug 2007 17:49:39 +0000
changeset 579 94db15de0392
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Some changes to make build process clear - There could be 1-8 hedgehogs (was 3-8) in team - Start implementing 'Load' page

#include <QApplication>

#include "mainform.h"

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