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.
26 lines
671 B
26 lines
671 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
//=============================================================================// |
|
|
|
#include "cbase.h" |
|
#include "baseprojectile.h" |
|
|
|
|
|
IMPLEMENT_NETWORKCLASS_ALIASED( BaseProjectile, DT_BaseProjectile ) |
|
|
|
BEGIN_NETWORK_TABLE( CBaseProjectile, DT_BaseProjectile ) |
|
END_NETWORK_TABLE() |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: Constructor. |
|
//----------------------------------------------------------------------------- |
|
CBaseProjectile::CBaseProjectile() |
|
{ |
|
#ifdef GAME_DLL |
|
m_iDestroyableHitCount = 0; |
|
#endif |
|
}
|
|
|