rayzor

view src/rayzor.h @ 22:5380ff64e83f

minor changes from dos, and line endings cleanup
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 02 May 2014 14:32:58 +0300
parents 70e332156d02
children
line source
1 #ifndef RAYZOR_H_
2 #define RAYZOR_H_
4 #include "inttypes.h"
6 // global framebuffer (back buffer)
7 extern uint32_t *fb_pixels;
8 extern int fb_width, fb_height;
9 extern int fb_bpp;
11 class Scene;
12 extern Scene *scene;
14 void quit_app();
16 #endif /* RAYZOR_H_ */