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/client/dod/fx_dod_muzzleflash.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'game/client/dod/fx_dod_muzzleflash.h')
| -rw-r--r-- | game/client/dod/fx_dod_muzzleflash.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/game/client/dod/fx_dod_muzzleflash.h b/game/client/dod/fx_dod_muzzleflash.h new file mode 100644 index 0000000..03275aa --- /dev/null +++ b/game/client/dod/fx_dod_muzzleflash.h @@ -0,0 +1,28 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//=============================================================================// + +#include "particles_simple.h" +#include "particles_localspace.h" +#include "fx.h" +#include "c_te_effect_dispatch.h" + +class CMuzzleFlashEmitter_1stPerson : public CLocalSpaceEmitter +{ +public: + DECLARE_CLASS( CMuzzleFlashEmitter_1stPerson, CLocalSpaceEmitter ); + + static CSmartPtr<CMuzzleFlashEmitter_1stPerson> Create( const char *pDebugName, int entIndex, int nAttachment, int fFlags = 0 ); + + virtual void Update( float t ) { BaseClass::Update(t); } + +protected: + CMuzzleFlashEmitter_1stPerson( const char *pDebugName ); + +private: + CMuzzleFlashEmitter_1stPerson( const CMuzzleFlashEmitter_1stPerson & ); + + int m_iMuzzleFlashType; +};
\ No newline at end of file |