tools/MissionsEditor/main.cpp
author nemo
Mon, 22 Feb 2010 00:53:04 +0000
changeset 2840 bb9117753fe4
parent 2572 af96861683f8
permissions -rw-r--r--
Skip drawing some stuff if water is opaque. Affects simulation.

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

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