tools/MissionsEditor/main.cpp
author koda
Wed, 30 Jun 2010 14:52:48 +0200
changeset 3595 341e407e3754
parent 2572 af96861683f8
permissions -rw-r--r--
partially removing DOWNSCALE ifdef -- only two remain and their removal requires dynamic allocation (btw this breaks low quality mode)

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

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