team selection completely refactored, now has animation and more performance
use a semi transparent black background color (on powerful devices)
other smaller improvements and bugfixes
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif