mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-10 01:16:47 +00:00
34 lines
963 B
C
34 lines
963 B
C
|
//========= 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
|