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.
 
 
 
 
 
 

39 lines
1.1 KiB

//========= Copyright Valve Corporation, All rights reserved. ============//
#ifndef C_HEADLESS_HATMAN_H
#define C_HEADLESS_HATMAN_H
#include "c_ai_basenpc.h"
//--------------------------------------------------------------------------------------------------------
/**
* The client-side implementation of the Dark Knight
*/
class C_HeadlessHatman : public C_NextBotCombatCharacter
{
public:
DECLARE_CLASS( C_HeadlessHatman, C_NextBotCombatCharacter );
DECLARE_CLIENTCLASS();
C_HeadlessHatman();
virtual ~C_HeadlessHatman();
public:
virtual void Spawn( void );
virtual bool IsNextBot() { return true; }
virtual Vector GetObserverCamOrigin( void ); // Return the origin for player observers tracking this target
virtual void FireEvent( const Vector& origin, const QAngle& angles, int event, const char *options );
virtual void ClientThink();
private:
C_HeadlessHatman( const C_HeadlessHatman & ); // not defined, not accessible
HPARTICLEFFECT m_ghostEffect;
HPARTICLEFFECT m_leftEyeEffect;
HPARTICLEFFECT m_rightEyeEffect;
};
#endif // C_HEADLESS_HATMAN_H