- moved some global variables into a seperate class
[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 PlayerStatus player_status;
17
18 // FIXME: Move this into a view class
19 float scroll_x;
20
21 unsigned int global_frame_counter;
22
23 timer_type time_left;
24 double frame_ratio;
25
26 // EOF //
27