tools/MissionsEditor/main.cpp
author nemo
Thu, 18 Feb 2010 01:02:28 +0000
changeset 2824 2d25e49bc2e8
parent 2572 af96861683f8
permissions -rw-r--r--
Extra incentive to attack non-king hogs. If king loses his entourage, he loses 5hp per turn

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

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