tools/MissionsEditor/main.cpp
author koda
Thu, 22 Oct 2009 18:59:35 +0000
changeset 2575 d06e0e829828
parent 2572 af96861683f8
permissions -rw-r--r--
update color management for new sdl_image on mac still has some trasparency problems

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

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