1
0
mirror of https://github.com/nillerusr/source-engine.git synced 2025-01-21 12:29:59 +00:00

39 lines
1.1 KiB
C
Raw Normal View History

2020-04-22 12:56:21 -04:00
//========= 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