tools/MissionsEditor/main.cpp
author koda
Wed, 22 Sep 2010 23:46:38 +0200
changeset 3895 e7c202c08ac1
parent 2572 af96861683f8
permissions -rw-r--r--
compilation bugfix and scaling down textures when bigger than screen

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

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