diff options
Diffstat (limited to 'utils/tfstats/cureaward.h')
| -rw-r--r-- | utils/tfstats/cureaward.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/utils/tfstats/cureaward.h b/utils/tfstats/cureaward.h new file mode 100644 index 0000000..334894d --- /dev/null +++ b/utils/tfstats/cureaward.h @@ -0,0 +1,21 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +// +//=============================================================================// +#include "Award.h" +#include <map> + +using namespace std; +class CCureAward: public CAward +{ +protected: + map <PID,int> numcures; + void noWinner(CHTMLFile& html); + void extendedinfo(CHTMLFile& html); +public: + explicit CCureAward():CAward("Life-Saver"){} + void getWinner(); +};
\ No newline at end of file |