1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-21 04:56:01 +08:00
Files
hl2sdk/game/client/swarm/c_asw_playerlocaldata.cpp

27 lines
747 B
C++
Raw Normal View History

//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
#include "c_asw_playerlocaldata.h"
#include "dt_recv.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
BEGIN_RECV_TABLE_NOBASE( C_ASWPlayerLocalData, DT_ASWLocal )
RecvPropEHandle( RECVINFO(m_hAutoAimTarget) ),
RecvPropVector( RECVINFO(m_vecAutoAimPoint) ),
RecvPropBool( RECVINFO(m_bAutoAimTarget) ),
END_RECV_TABLE()
BEGIN_PREDICTION_DATA_NO_BASE( C_ASWPlayerLocalData )
END_PREDICTION_DATA()
C_ASWPlayerLocalData::C_ASWPlayerLocalData()
{
}