tools/MissionsEditor/main.cpp
author koda
Tue, 06 Apr 2010 21:54:46 +0000
changeset 3315 4e2813713358
parent 2572 af96861683f8
permissions -rw-r--r--
usa a cached dictionary and write only when needed

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

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