rayzor

view src/rayzor.h @ 13:964f8ea5f095

missed quite a lot of things in my last commit apparently
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 12 Apr 2014 23:37:55 +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_ */