You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
523 B
29 lines
523 B
5 years ago
|
//========= 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
|
||
|
|
||
|
|