Added inverse functions for speed. Might be usefull for someone that wants to make...
[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 PlayerStatus::PlayerStatus()
19   : score(0),
20     distros(0),
21     lives(3)
22 {
23 }
24
25 // FIXME: Move this into a view class
26 float scroll_x;
27
28 unsigned int global_frame_counter;
29
30 // EOF //
31