Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
470 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. #include "Award.h"
  9. #include <map>
  10. using namespace std;
  11. class CCureAward: public CAward
  12. {
  13. protected:
  14. map <PID,int> numcures;
  15. void noWinner(CHTMLFile& html);
  16. void extendedinfo(CHTMLFile& html);
  17. public:
  18. explicit CCureAward():CAward("Life-Saver"){}
  19. void getWinner();
  20. };