diff options
Diffstat (limited to 'mp/src/game/server/hl2/assassin_smoke.h')
| -rw-r--r-- | mp/src/game/server/hl2/assassin_smoke.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/mp/src/game/server/hl2/assassin_smoke.h b/mp/src/game/server/hl2/assassin_smoke.h new file mode 100644 index 00000000..d95d95e7 --- /dev/null +++ b/mp/src/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
+
+
|