tools/templates/main.cpp
author unc0rr
Mon, 26 Jan 2009 21:02:49 +0000
changeset 1767 d0560fe17932
parent 359 59fbfc65fbda
permissions -rw-r--r--
Turn cave mode on automatically when there are pixels on top of map

#include <QApplication>

#include "mainform.h"

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