1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00
hl2sdk/game/server/movie_explosion.h

29 lines
535 B
C
Raw Normal View History

2013-06-27 06:22:04 +08:00
//========= 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