diff options
Diffstat (limited to 'game/client/tf/player_vs_environment/c_boss_alpha.h')
| -rw-r--r-- | game/client/tf/player_vs_environment/c_boss_alpha.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/game/client/tf/player_vs_environment/c_boss_alpha.h b/game/client/tf/player_vs_environment/c_boss_alpha.h new file mode 100644 index 0000000..802ab89 --- /dev/null +++ b/game/client/tf/player_vs_environment/c_boss_alpha.h @@ -0,0 +1,39 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +#ifndef C_BOSS_ALPHA_H +#define C_BOSS_ALPHA_H + +#include "c_ai_basenpc.h" + + +//-------------------------------------------------------------------------------------------------------- +/** + * The client-side implementation of Boss Alpha + */ +class C_BossAlpha : public C_NextBotCombatCharacter +{ +public: + DECLARE_CLASS( C_BossAlpha, C_NextBotCombatCharacter ); + DECLARE_CLIENTCLASS(); + + C_BossAlpha(); + virtual ~C_BossAlpha(); + +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_BossAlpha( const C_BossAlpha & ); // not defined, not accessible + + CNetworkVar( bool, m_isNuking ); + HPARTICLEFFECT m_nukeEffect; +}; + + +#endif // C_BOSS_ALPHA_H |