This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
|
#ifndef _STATICCAM_H_
|
|
#define _STATICCAM_H_
|
|
|
|
#include "camera.h"
|
|
|
|
class StaticCam : public Camera
|
|
{
|
|
public:
|
|
StaticCam( char *filename );
|
|
virtual ~StaticCam( void );
|
|
|
|
void update( void );
|
|
|
|
private:
|
|
|
|
SDL_Surface *loaded;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* ifndef _QUICKCAM_H_ */
|