Engine:
* Let gears collide once they significantly leave visible area (might need more testing)
* Added skipping sound to gears skipping on water surface
Frontend:
* Fixed loading/saving of control bindings
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif