diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /game/server/tf/tf_taunt_prop.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'game/server/tf/tf_taunt_prop.h')
| -rw-r--r-- | game/server/tf/tf_taunt_prop.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/game/server/tf/tf_taunt_prop.h b/game/server/tf/tf_taunt_prop.h new file mode 100644 index 0000000..2d48ae4 --- /dev/null +++ b/game/server/tf/tf_taunt_prop.h @@ -0,0 +1,33 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: Play VCD on taunt prop +// +// $NoKeywords: $ +//=============================================================================// +#ifndef TF_TAUNT_PROP_H +#define TF_TAUNT_PROP_H +#ifdef _WIN32 +#pragma once +#endif + +class CTFTauntProp : public CBaseCombatCharacter +{ + DECLARE_CLASS( CTFTauntProp, CBaseCombatCharacter ); +public: + DECLARE_SERVERCLASS(); + + CTFTauntProp(); + + virtual bool StartSceneEvent( CSceneEventInfo *info, CChoreoScene *scene, CChoreoEvent *event, CChoreoActor *actor, CBaseEntity *pTarget ) OVERRIDE; + + virtual bool ProcessSceneEvent( CSceneEventInfo *info, CChoreoScene *scene, CChoreoEvent *event ) OVERRIDE; + + virtual float PlayScene( const char *pszScene, float flDelay = 0.0f, AI_Response *response = NULL, IRecipientFilter *filter = NULL ) OVERRIDE; + + virtual void UpdateOnRemove() OVERRIDE; + +private: + EHANDLE m_hScene; +}; + +#endif // TF_TAUNT_PROP_H |