bloboland

diff src/game.h @ 2:1757973feaed

added stereoscopic rendering for no apparent reason
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 16 Dec 2012 00:37:35 +0200
parents cfe68befb7cc
children
line diff
     1.1 --- a/src/game.h	Sat Dec 15 23:43:03 2012 +0200
     1.2 +++ b/src/game.h	Sun Dec 16 00:37:35 2012 +0200
     1.3 @@ -1,11 +1,14 @@
     1.4  #ifndef GAME_H_
     1.5  #define GAME_H_
     1.6  
     1.7 +extern int win_xsz, win_ysz;
     1.8 +
     1.9  #define GAME_MAX_KEYS		256
    1.10  #define GAME_MAX_BUTTONS	16
    1.11  
    1.12  extern bool keystate[GAME_MAX_KEYS];
    1.13  extern bool bnstate[GAME_MAX_BUTTONS];
    1.14 +extern float stereo_focus_dist, stereo_eye_sep;
    1.15  
    1.16  bool game_init();
    1.17  void game_shutdown();