blob: 13ca2efa842eab3f28b5dd6b3149018649436edb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//========= 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
|