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.
32 lines
1.0 KiB
32 lines
1.0 KiB
//========= 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
|
|
|