OpenAL makes a comeback! (might require some cleanup)
removed sdl_mixer from ifrontend as it's too buggy
updated hedgwars.pro project file
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif