add hl1,portal,dod source code

This commit is contained in:
nillerusr
2022-04-16 12:05:19 +03:00
parent bc6873014e
commit 23a370d9bb
524 changed files with 174173 additions and 0 deletions
+28
View File
@@ -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;
};