Counter Strike : Global Offensive Source Code
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.

25 lines
529 B

  1. //========= Copyright � 1996-2008, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: Server-side counterpart to C_MemoryLog (see c_memorylog.h)
  4. //
  5. //=============================================================================//
  6. #ifndef MEMORYLOG_H
  7. #define MEMORYLOG_H
  8. #if !defined( _CERT )
  9. #include "igamesystem.h"
  10. class CMemoryLog : public CAutoGameSystemPerFrame
  11. {
  12. public:
  13. // Methods of IGameSystem
  14. virtual void LevelInitPostEntity();
  15. private:
  16. };
  17. #endif // !defined( _CERT )
  18. #endif // MEMORYLOG_H