mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-23 01:59:43 +08:00
29 lines
535 B
C
29 lines
535 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef MOVIE_EXPLOSION_H
|
||
|
#define MOVIE_EXPLOSION_H
|
||
|
|
||
|
|
||
|
#include "baseparticleentity.h"
|
||
|
|
||
|
|
||
|
class MovieExplosion : public CBaseParticleEntity
|
||
|
{
|
||
|
public:
|
||
|
DECLARE_CLASS( MovieExplosion, CBaseParticleEntity );
|
||
|
DECLARE_SERVERCLASS();
|
||
|
|
||
|
static MovieExplosion* CreateMovieExplosion(const Vector &pos);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|