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.
 
 
 
 
 
 

28 lines
762 B

//========= Copyright Valve Corporation, All rights reserved. ============//
// tf_bot_nav_ent_wait.h
// Wait for awhile, as directed by nav entity
// Michael Booth, September 2009
#ifndef TF_BOT_NAV_ENT_WAIT_H
#define TF_BOT_NAV_ENT_WAIT_H
#include "NextBot/NavMeshEntities/func_nav_prerequisite.h"
class CTFBotNavEntWait : public Action< CTFBot >
{
public:
CTFBotNavEntWait( const CFuncNavPrerequisite *prereq );
virtual ActionResult< CTFBot > OnStart( CTFBot *me, Action< CTFBot > *priorAction );
virtual ActionResult< CTFBot > Update( CTFBot *me, float interval );
virtual const char *GetName( void ) const { return "NavEntWait"; };
private:
CHandle< CFuncNavPrerequisite > m_prereq;
CountdownTimer m_timer;
};
#endif // TF_BOT_NAV_ENT_WAIT_H