move onNewTurn, onGameTick and onGameTick20 to try and avoid ParseCommand breakage after nextturn call. Needs testing, but should be safe for most scripts. Also fix locale loading.
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef SPARKLEAUTOUPDATER_H
#define SPARKLEAUTOUPDATER_H
#include <QString>
#include "AutoUpdater.h"
class SparkleAutoUpdater : public AutoUpdater
{
public:
SparkleAutoUpdater();
~SparkleAutoUpdater();
void checkForUpdates();
void checkForUpdatesNow();
private:
class Private;
Private* d;
};
#endif