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.
 
 
 
 
 
 

22 lines
756 B

//========= Copyright Valve Corporation, All rights reserved. ============//
//
//
//
//=============================================================================
#ifndef ZOMBIE_SPAWN_H
#define ZOMBIE_SPAWN_H
//---------------------------------------------------------------------------------------------
//---------------------------------------------------------------------------------------------
class CZombieSpawn : public Action< CZombie >
{
public:
virtual ActionResult< CZombie > OnStart( CZombie *me, Action< CZombie > *priorAction );
virtual ActionResult< CZombie > Update( CZombie *me, float interval );
virtual const char *GetName( void ) const { return "Spawn"; } // return name of this action
private:
};
#endif // ZOMBIE_SPAWN_H