revamp gamemodes section in the ifrontend and update ios game modes
move minestime and turntime *1000 away from frontend and move it in engine (preserving lua compatibility)
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif