Two new gameplay modes: Tumbler and Racer.
Knock hedgehogs with Tumber.
Race against your friends with Racer.
Both modes could still use more development.
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif