tools/MissionsEditor/main.cpp
author smxx
Sat, 27 Mar 2010 21:04:38 +0000
changeset 3127 9ebdc21aba87
parent 2572 af96861683f8
permissions -rw-r--r--
CMake * I must not eat melon bombs * I must not eat melon bombs

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

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