use external libs more consistently
scrap openalbridge in favour of sdl_mixer (once again)
removed many double free crashes
added Tiy's graphics and pause the game when popover appears
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif