- made some more global variables, local
[supertux.git] / src / scene.cpp
1 //
2 // C Implementation: scene
3 //
4 // Description: 
5 //
6 //
7 // Author: Tobias Glaesser <tobi.web@gmx.de>, (C) 2004
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12
13 #include <stdlib.h>
14 #include "scene.h"
15
16 int score;
17 int distros;
18 int level;
19 int next_level;
20 int score_multiplier;
21 bool counting_distros;
22 int distro_counter;
23 timer_type  super_bkgd_timer;
24
25 // FIXME: Move this into a view class
26 float scroll_x;
27
28 unsigned int global_frame_counter;
29
30 texture_type img_box_full;
31 texture_type img_box_empty;
32 texture_type img_mints;
33 texture_type img_coffee;
34 texture_type img_super_bkgd;
35 texture_type img_red_glow;
36 timer_type time_left;
37 double frame_ratio;
38
39 // EOF //
40