diff options
Diffstat (limited to 'video.h')
-rw-r--r-- | video.h | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +#ifndef VIDEO_H +#define VIDEO_H + +#include <SDL.h> + +namespace video { + extern int width; + extern int height; + + void init(); + void free(); + void persp(); + void ortho(); + + extern SDL_Surface *surface; +} /* video */ + +#endif |