- localized some more variables
[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 next_level;
19 int score_multiplier;
20 timer_type  super_bkgd_timer;
21
22 // FIXME: Move this into a view class
23 float scroll_x;
24
25 unsigned int global_frame_counter;
26
27 timer_type time_left;
28 double frame_ratio;
29
30 // EOF //
31