Fix (quite rare) spectators queue error when joining game with teams left the game.
Could be applied to 0.9.12 without breaking compatibility.
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif