rayzor

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/rayzor.h	Thu Apr 10 02:31:31 2014 +0300
     1.3 @@ -0,0 +1,14 @@
     1.4 +#ifndef RAYZOR_H_
     1.5 +#define RAYZOR_H_
     1.6 +
     1.7 +// global framebuffer (back buffer)
     1.8 +extern uint32_t *fb_pixels;
     1.9 +extern int fb_width, fb_height;
    1.10 +extern int fb_bpp;
    1.11 +
    1.12 +class Scene;
    1.13 +extern Scene *scene;
    1.14 +
    1.15 +void quit_app();
    1.16 +
    1.17 +#endif	/* RAYZOR_H_ */