mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-09-01 15:09:19 +00:00
upload "kind" alien swarm
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
#ifndef _INCLUDED_ASW_DOOR_PADDING_H
|
||||
#define _INCLUDED_ASW_DOOR_PADDING_H
|
||||
|
||||
#include "asw_door.h"
|
||||
|
||||
class CASW_Door_Padding : public CBaseAnimating
|
||||
{
|
||||
public:
|
||||
DECLARE_CLASS( CASW_Door_Padding, CBaseAnimating );
|
||||
DECLARE_DATADESC();
|
||||
|
||||
virtual ~CASW_Door_Padding();
|
||||
|
||||
void Spawn( void );
|
||||
void Precache();
|
||||
void OnRestore( void );
|
||||
|
||||
static CASW_Door_Padding *CreateDoorPadding( CASW_Door *pDoor );
|
||||
};
|
||||
|
||||
class CASW_Fallen_Door_Padding : public CBaseAnimating
|
||||
{
|
||||
public:
|
||||
DECLARE_CLASS( CASW_Fallen_Door_Padding, CBaseAnimating );
|
||||
DECLARE_DATADESC();
|
||||
|
||||
void Spawn( void );
|
||||
void Precache();
|
||||
virtual int ShouldTransmit( const CCheckTransmitInfo *pInfo );
|
||||
virtual int UpdateTransmitState();
|
||||
|
||||
static CASW_Fallen_Door_Padding *CreateFallenDoorPadding( CASW_Door *pDoor );
|
||||
};
|
||||
|
||||
|
||||
#endif /* _INCLUDED_ASW_DOOR_PADDING_H */
|
||||
Reference in New Issue
Block a user