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.
 
 
 
 
 
 

26 lines
636 B

//========= Copyright Valve Corporation, All rights reserved. ============//
#ifndef C_TF_BASE_BOSS_H
#define C_TF_BASE_BOSS_H
#include "NextBot/C_NextBot.h"
#include "c_tf_mvm_boss_progress_user.h"
class C_TFBaseBoss : public C_NextBotCombatCharacter, public C_TFMvMBossProgressUser
{
public:
DECLARE_CLASS( C_TFBaseBoss, C_NextBotCombatCharacter );
DECLARE_CLIENTCLASS();
virtual ~C_TFBaseBoss() {}
ShadowType_t ShadowCastType( void );
// ITFMvMBossProgressUser
virtual float GetBossStatusProgress() const OVERRIDE { return m_lastHealthPercentage; }
private:
float m_lastHealthPercentage;
};
#endif // C_TF_BASE_BOSS_H