mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-14 20:56:56 +00:00
1
This commit is contained in:
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user