Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
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.

24 lines
525 B

#ifndef _INCLUDED_ASW_CLIENT_CORPSE_H
#define _INCLUDED_ASW_CLIENT_CORPSE_H
#ifdef _WIN32
#pragma once
#endif
#include "gib.h"
class CASW_Client_Corpse : public CRagGib
{
public:
DECLARE_CLASS( CASW_Client_Corpse, CRagGib );
DECLARE_SERVERCLASS();
DECLARE_DATADESC();
virtual void Spawn();
virtual void Precache();
virtual int ShouldTransmit( const CCheckTransmitInfo *pInfo );
virtual bool BecomeRagdollOnClient( const Vector &force );
string_t m_szRagdollSequence;
};
#endif /* _INCLUDED_ASW_CLIENT_CORPSE_H */