implemented endless turns support and added Timeless scheme (also fixed a crasher)
new save button from Tiy
other minor stuff
#include <QtGui/QApplication>
#include "editor.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
editor w;
w.show();
return a.exec();
}