tools/MissionsEditor/main.cpp
author nemo
Sun, 24 Jan 2010 16:35:47 +0000
changeset 2710 94e2aed1fd48
parent 2572 af96861683f8
permissions -rw-r--r--
Some value for opacity. Did not adjust water colour.

#include <QtGui/QApplication>
#include "editor.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    editor w;
    w.show();
    return a.exec();
}