diff options
Diffstat (limited to 'game/server/hl2/assassin_smoke.h')
| -rw-r--r-- | game/server/hl2/assassin_smoke.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/game/server/hl2/assassin_smoke.h b/game/server/hl2/assassin_smoke.h new file mode 100644 index 0000000..5492378 --- /dev/null +++ b/game/server/hl2/assassin_smoke.h @@ -0,0 +1,28 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +// +//=============================================================================// + +#ifndef ASSASSIN_SMOKE_H +#define ASSASSIN_SMOKE_H + + +#include "baseparticleentity.h" + + +class CAssassinSmoke : public CBaseParticleEntity +{ +public: + DECLARE_CLASS( CAssassinSmoke, CBaseParticleEntity ); + DECLARE_SERVERCLASS(); + + static CAssassinSmoke* CreateAssassinSmoke (const Vector &pos); +}; + + +#endif//ASSASSIN_SMOKE_H + + |