add the appirater class for getting more positive reviews
enabled full multitasking for iphone (but only with ios >= 4.2)
fixed a glitch that would leave stuff onscreen while ammo menu open
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif