tools/MissionsEditor/main.cpp
author koda
Tue, 23 Mar 2010 21:58:23 +0000
changeset 3055 f542a36ef6c0
parent 2572 af96861683f8
permissions -rw-r--r--
fix a build error on 10.5, LandPixels properly initialized

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

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