#include <gStatistics.h>
Public Member Functions | |
gStatistics () | |
~gStatistics () | |
Public Attributes | |
gStatList * | highscores |
gStatList * | won_rounds |
gStatList * | won_matches |
gStatList * | ladder |
gStatList * | kills |
gStatList * | deaths |
Definition at line 33 of file gStatistics.h.
gStatistics::gStatistics | ( | ) |
Definition at line 39 of file gStatistics.cpp.
References deaths, highscores, kills, statOutputType, won_matches, and won_rounds.
00040 { 00041 highscores = new gStatList("highscores", statOutputType); 00042 won_rounds = new gStatList("won_rounds", statOutputType); 00043 won_matches = new gStatList("won_matches", statOutputType); 00044 // ladder = new gStatList("ladder", statOutputType); 00045 kills = new gStatList("kills", statOutputType); 00046 deaths = new gStatList("deaths", statOutputType); 00047 }
gStatistics::~gStatistics | ( | ) |
Definition at line 49 of file gStatistics.cpp.
References deaths, highscores, kills, won_matches, and won_rounds.
00050 { 00051 delete highscores; 00052 delete won_rounds; 00053 delete won_matches; 00054 // delete ladder; 00055 delete kills; 00056 delete deaths; 00057 }
Definition at line 37 of file gStatistics.h.
Referenced by gGame::Analysis(), gStatistics(), and ~gStatistics().
Definition at line 38 of file gStatistics.h.
Referenced by gGame::Analysis(), gStatistics(), and ~gStatistics().
Definition at line 39 of file gStatistics.h.
Referenced by gGame::Analysis(), gStatistics(), and ~gStatistics().
Definition at line 40 of file gStatistics.h.
Definition at line 41 of file gStatistics.h.
Referenced by gStatistics(), gCycle::KillAt(), and ~gStatistics().
Definition at line 42 of file gStatistics.h.
Referenced by gStatistics(), gCycle::KillAt(), and ~gStatistics().