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