blob: 334894de8f59bad90004c8b77a31925b47048cfc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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();
};
|