This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
@@ -0,0 +1,26 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
// tf_bot_taunt.h
// Stand still and play a taunt animation
// Michael Booth, November 2009
#ifndef TF_BOT_TAUNT_H
#define TF_BOT_TAUNT_H
//-----------------------------------------------------------------------------
class CTFBotTaunt : public Action< CTFBot >
{
public:
virtual ActionResult< CTFBot > OnStart( CTFBot *me, Action< CTFBot > *priorAction );
virtual ActionResult< CTFBot > Update( CTFBot *me, float interval );
virtual const char *GetName( void ) const { return "Taunt"; };
private:
CountdownTimer m_tauntTimer;
CountdownTimer m_tauntEndTimer;
bool m_didTaunt;
};
#endif // TF_BOT_TAUNT_H