diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-03-30 22:30:35 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-03-30 22:30:35 +0200 |
commit | d8a69e6abeea2034c17d84ef74009b137faa06cc (patch) | |
tree | 7ed3fbd07adc8328aba71cfb26ffc3eb5ff5ebf7 /video.h |
Initial commit.
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 |