strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif