diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /game/server/hl1/hl1_grenade_spit.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'game/server/hl1/hl1_grenade_spit.h')
| -rw-r--r-- | game/server/hl1/hl1_grenade_spit.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/game/server/hl1/hl1_grenade_spit.h b/game/server/hl1/hl1_grenade_spit.h new file mode 100644 index 0000000..70ff6c7 --- /dev/null +++ b/game/server/hl1/hl1_grenade_spit.h @@ -0,0 +1,49 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: Projectile shot by bullsquid +// +// $Workfile: $ +// $Date: $ +// +//----------------------------------------------------------------------------- +// $Log: $ +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef GRENADESPIT_H +#define GRENADESPIT_H + +#include "hl1_basegrenade.h" + +enum SpitSize_e +{ + SPIT_SMALL, + SPIT_MEDIUM, + SPIT_LARGE, +}; + +#define SPIT_GRAVITY 0.9 + +class CGrenadeSpit : public CHL1BaseGrenade +{ +public: + DECLARE_CLASS( CGrenadeSpit, CHL1BaseGrenade ); + + void Spawn( void ); + void Precache( void ); + void SpitThink( void ); + void GrenadeSpitTouch( CBaseEntity *pOther ); + void Event_Killed( const CTakeDamageInfo &info ); + void SetSpitSize(int nSize); + + int m_nSquidSpitSprite; + float m_fSpitDeathTime; // If non-zero won't detonate + + void EXPORT Detonate(void); + CGrenadeSpit(void); + + DECLARE_DATADESC(); +}; + +#endif //GRENADESPIT_H |