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/hl2mp/grenade_tripmine.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'game/server/hl2mp/grenade_tripmine.h')
| -rw-r--r-- | game/server/hl2mp/grenade_tripmine.h | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/game/server/hl2mp/grenade_tripmine.h b/game/server/hl2mp/grenade_tripmine.h new file mode 100644 index 0000000..e188709 --- /dev/null +++ b/game/server/hl2mp/grenade_tripmine.h @@ -0,0 +1,56 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef GRENADE_TRIPMINE_H +#define GRENADE_TRIPMINE_H +#ifdef _WIN32 +#pragma once +#endif + +#include "basegrenade_shared.h" + +class CBeam; + + +class CTripmineGrenade : public CBaseGrenade +{ +public: + DECLARE_CLASS( CTripmineGrenade, CBaseGrenade ); + + CTripmineGrenade(); + void Spawn( void ); + void Precache( void ); + +#if 0 // FIXME: OnTakeDamage_Alive() is no longer called now that base grenade derives from CBaseAnimating + int OnTakeDamage_Alive( const CTakeDamageInfo &info ); +#endif + void WarningThink( void ); + void PowerupThink( void ); + void BeamBreakThink( void ); + void DelayDeathThink( void ); + void Event_Killed( const CTakeDamageInfo &info ); + + void MakeBeam( void ); + void KillBeam( void ); + +public: + EHANDLE m_hOwner; + +private: + float m_flPowerUp; + Vector m_vecDir; + Vector m_vecEnd; + float m_flBeamLength; + + CBeam *m_pBeam; + Vector m_posOwner; + Vector m_angleOwner; + + DECLARE_DATADESC(); +}; + +#endif // GRENADE_TRIPMINE_H |