Engine:
* Tiny adjustment to improve AI's Watermelon Bomb accuracy
Graphics:
* New flame graphics
* Fixed mirrored earth in the mirrored fort graphic
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif