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.
38 lines
1.1 KiB
38 lines
1.1 KiB
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: Interface of CTalkativeAward |
|
// |
|
// $Workfile: $ |
|
// $Date: $ |
|
// |
|
//------------------------------------------------------------------------------------------------------ |
|
// $Log: $ |
|
// |
|
// $NoKeywords: $ |
|
//=============================================================================// |
|
#ifndef TALKATIVEAWARD_H |
|
#define TALKATIVEAWARD_H |
|
#ifdef WIN32 |
|
#pragma once |
|
#endif |
|
#include "Award.h" |
|
#include <map> |
|
using namespace std; |
|
|
|
//------------------------------------------------------------------------------------------------------ |
|
// Purpose: CTalkativeAward is an award given to the player who speaks the most |
|
// words. |
|
//------------------------------------------------------------------------------------------------------ |
|
class CTalkativeAward: public CAward |
|
{ |
|
protected: |
|
map<PID,int> numtalks; |
|
void noWinner(CHTMLFile& html); |
|
void extendedinfo(CHTMLFile& html); |
|
|
|
map<int,string> fulltalktext; |
|
public: |
|
explicit CTalkativeAward():CAward("Bigmouth"){} |
|
void getWinner(); |
|
}; |
|
#endif // TALKATIVEAWARD_H
|
|
|