1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 20:46:03 +08:00
Files
hl2sdk/game/client/swarm/c_asw_marker.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
500 B
C++
Raw Normal View History

#include "cbase.h"
#include "c_asw_marker.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
IMPLEMENT_AUTO_LIST( IObjectiveMarkerList );
IMPLEMENT_CLIENTCLASS_DT(C_ASW_Marker, DT_ASW_Marker, CASW_Marker)
RecvPropString( RECVINFO( m_ObjectiveName ) ),
RecvPropInt( RECVINFO( m_nMapWidth ) ),
RecvPropInt( RECVINFO( m_nMapHeight ) ),
RecvPropBool( RECVINFO( m_bComplete ) ),
RecvPropBool( RECVINFO( m_bEnabled ) ),
END_RECV_TABLE()