FS2_Open
Open source remastering of the Freespace 2 engine
stats.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) Volition, Inc. 1999. All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell
5  * or otherwise commercially exploit the source or things you created based on the
6  * source.
7  *
8 */
9 
10 
11 
12 #ifndef _FS_STATISTICS_STATE_HEADER
13 #define _FS_STATISTICS_STATE_HEADER
14 
15 #define MISSION_STATS 0
16 #define ALL_TIME_STATS 1
17 
18 void show_stats_init();
19 void show_stats_close();
20 void set_player_stats(int pid);
21 void init_multiplayer_stats( void ); // initializes all mission specific stats to be 0
22 
23 void show_stats_numbers(int stage, int sx, int sy, int dy=10,int add_mission = 0);
24 void show_stats_label(int stage, int sx, int sy, int dy=10);
25 
26 #endif
void init_multiplayer_stats(void)
Definition: stats.cpp:308
void show_stats_close()
Definition: stats.cpp:302
void show_stats_label(int stage, int sx, int sy, int dy=10)
Definition: stats.cpp:42
void set_player_stats(int pid)
Definition: stats.cpp:318
void show_stats_numbers(int stage, int sx, int sy, int dy=10, int add_mission=0)
Definition: stats.cpp:131
void show_stats_init()
Definition: stats.cpp:32