Engine:
* Reduced alt weapon box's size to 75%
* Updated DrawTextureF and DrawRotatedTextureF to support multiple columns as well as custom dimensions
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
};
#endif