tools/MissionsEditor/main.cpp
author Palewolf
Mon, 01 Nov 2010 23:13:58 +0100
changeset 4086 54185e353242
parent 2572 af96861683f8
permissions -rw-r--r--
New land texture for Nature theme

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

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