haraldhv
/
aigo
Archived
1
0
Fork 0
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.
aigo/lib/staticcam.h

24 lines
270 B
C
Raw Permalink Normal View History

2007-03-14 18:02:22 +01:00
#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_ */