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.
33 lines
1.0 KiB
33 lines
1.0 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose: Interface of CDialogueReadout
|
||
|
//
|
||
|
// $Workfile: $
|
||
|
// $Date: $
|
||
|
//
|
||
|
//------------------------------------------------------------------------------------------------------
|
||
|
// $Log: $
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
#ifndef DIALOGUEREADOUT_H
|
||
|
#define DIALOGUEREADOUT_H
|
||
|
#ifdef WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
#include "Report.h"
|
||
|
|
||
|
//------------------------------------------------------------------------------------------------------
|
||
|
// Purpose: CDialogueReadout is a full page report element that outputs a listing
|
||
|
// of all the dialogue in the match. It also reports deaths, and suicides since those
|
||
|
// usually beget lots of smack talking.
|
||
|
//------------------------------------------------------------------------------------------------------
|
||
|
class CDialogueReadout : public CReport
|
||
|
{
|
||
|
private:
|
||
|
public:
|
||
|
explicit CDialogueReadout(){}
|
||
|
void writeHTML(CHTMLFile& html);
|
||
|
};
|
||
|
#endif // DIALOGUEREADOUT_H
|