Team Fortress 2 Source Code as on 22/4/2020
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

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: Interface of CDialogueReadout
  4. //
  5. // $Workfile: $
  6. // $Date: $
  7. //
  8. //------------------------------------------------------------------------------------------------------
  9. // $Log: $
  10. //
  11. // $NoKeywords: $
  12. //=============================================================================//
  13. #ifndef DIALOGUEREADOUT_H
  14. #define DIALOGUEREADOUT_H
  15. #ifdef WIN32
  16. #pragma once
  17. #endif
  18. #include "Report.h"
  19. //------------------------------------------------------------------------------------------------------
  20. // Purpose: CDialogueReadout is a full page report element that outputs a listing
  21. // of all the dialogue in the match. It also reports deaths, and suicides since those
  22. // usually beget lots of smack talking.
  23. //------------------------------------------------------------------------------------------------------
  24. class CDialogueReadout : public CReport
  25. {
  26. private:
  27. public:
  28. explicit CDialogueReadout(){}
  29. void writeHTML(CHTMLFile& html);
  30. };
  31. #endif // DIALOGUEREADOUT_H