Moved the Audio directory from the iOS folder one level up. Android-build will now refer to it SDL-android-project/build.xml must be changed if the directory is moved
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif