2008-09-15 01:07:45 -05:00
|
|
|
|
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================//
|
|
|
|
|
|
|
|
|
|
#include "cbase.h"
|
|
|
|
|
#include "dt_send.h"
|
|
|
|
|
#include "server_class.h"
|
|
|
|
|
#include "te_particlesystem.h"
|
|
|
|
|
#include "coordsize.h"
|
|
|
|
|
|
|
|
|
|
// memdbgon must be the last include file in a .cpp file!!!
|
|
|
|
|
#include "tier0/memdbgon.h"
|
|
|
|
|
|
|
|
|
|
IMPLEMENT_SERVERCLASS_ST(CTEParticleSystem, DT_TEParticleSystem)
|
|
|
|
|
#if defined( TF_DLL )
|
2008-09-15 02:50:57 -05:00
|
|
|
|
SendPropFloat( SENDINFO_VECTORELEM2(m_vecOrigin, 0, x), -1, SPROP_COORD_MP_INTEGRAL ),
|
|
|
|
|
SendPropFloat( SENDINFO_VECTORELEM2(m_vecOrigin, 1, y), -1, SPROP_COORD_MP_INTEGRAL ),
|
|
|
|
|
SendPropFloat( SENDINFO_VECTORELEM2(m_vecOrigin, 2, z), -1, SPROP_COORD_MP_INTEGRAL ),
|
2008-09-15 01:07:45 -05:00
|
|
|
|
#else
|
2008-09-15 02:50:57 -05:00
|
|
|
|
SendPropFloat( SENDINFO_VECTORELEM2(m_vecOrigin, 0, x), -1, SPROP_COORD),
|
|
|
|
|
SendPropFloat( SENDINFO_VECTORELEM2(m_vecOrigin, 1, y), -1, SPROP_COORD),
|
|
|
|
|
SendPropFloat( SENDINFO_VECTORELEM2(m_vecOrigin, 2, z), -1, SPROP_COORD),
|
2008-09-15 01:07:45 -05:00
|
|
|
|
#endif
|
|
|
|
|
END_SEND_TABLE()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|