tools/templates/main.cpp
author unc0rr
Fri, 26 Jan 2007 15:31:31 +0000
changeset 365 a26cec847dd7
parent 359 59fbfc65fbda
permissions -rw-r--r--
- New land generator feature: islands in the sky - Two themes with such islands

#include <QApplication>

#include "mainform.h"

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