mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-05 17:13:36 +08:00
26 lines
551 B
C++
26 lines
551 B
C++
#include "cbase.h"
|
|
#include "c_asw_extinguisher_projectile.h"
|
|
#include "iefx.h"
|
|
|
|
// memdbgon must be the last include file in a .cpp file!!!
|
|
#include "tier0/memdbgon.h"
|
|
|
|
IMPLEMENT_CLIENTCLASS_DT(C_ASW_Extinguisher_Projectile, DT_ASW_Extinguisher_Projectile, CASW_Extinguisher_Projectile)
|
|
|
|
END_RECV_TABLE()
|
|
|
|
BEGIN_PREDICTION_DATA( C_ASW_Extinguisher_Projectile )
|
|
|
|
END_PREDICTION_DATA()
|
|
|
|
|
|
C_ASW_Extinguisher_Projectile::C_ASW_Extinguisher_Projectile()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
C_ASW_Extinguisher_Projectile::~C_ASW_Extinguisher_Projectile()
|
|
{
|
|
|
|
} |