rayzor

view src/rayzor.h @ 9:70e332156d02

moving along
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 10 Apr 2014 02:31:31 +0300
parents
children a9a948809c6f
line source
1 #ifndef RAYZOR_H_
2 #define RAYZOR_H_
4 // global framebuffer (back buffer)
5 extern uint32_t *fb_pixels;
6 extern int fb_width, fb_height;
7 extern int fb_bpp;
9 class Scene;
10 extern Scene *scene;
12 void quit_app();
14 #endif /* RAYZOR_H_ */