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
743 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef CL_ENTS_PARSE_H
  8. #define CL_ENTS_PARSE_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. class CEntityReadInfo;
  13. class CSVCMsg_PacketEntities;
  14. void CL_DeleteDLLEntity( int iEnt, char *reason, bool bOnRecreatingAllEntities = false );
  15. void CL_CopyExistingEntity( CEntityReadInfo &u );
  16. void CL_PreserveExistingEntity( int nOldEntity );
  17. void CL_CopyNewEntity( CEntityReadInfo &u, int iClass, int iSerialNum );
  18. void CL_PreprocessEntities( void );
  19. bool CL_ProcessPacketEntities ( const CSVCMsg_PacketEntities &msg );
  20. #endif // CL_ENTS_PARSE_H