diff options
Diffstat (limited to 'game/server/movie_explosion.h')
| -rw-r--r-- | game/server/movie_explosion.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/game/server/movie_explosion.h b/game/server/movie_explosion.h new file mode 100644 index 0000000..4cd19c0 --- /dev/null +++ b/game/server/movie_explosion.h @@ -0,0 +1,28 @@ +//========= 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 + + |