redo LANDSCAPE MODE in a saner way with lots of fps
uWorld cleaned a little with widgets moved to fit the new interface
(mouse handling is messed up though)
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif