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.

36 lines
631 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. #ifndef PARTICLE_FIRE_H
  9. #define PARTICLE_FIRE_H
  10. #include "baseparticleentity.h"
  11. class CParticleFire : public CBaseParticleEntity
  12. {
  13. DECLARE_DATADESC();
  14. public:
  15. CParticleFire();
  16. DECLARE_CLASS( CParticleFire, CBaseParticleEntity );
  17. DECLARE_SERVERCLASS();
  18. // The client shoots a ray out and starts creating fire where it hits.
  19. CNetworkVector( m_vOrigin );
  20. CNetworkVector( m_vDirection );
  21. };
  22. #endif