This commit is contained in:
nephacks
2025-06-04 03:22:50 +02:00
parent f234f23848
commit f12416cffd
14243 changed files with 6446499 additions and 26 deletions

View File

@@ -0,0 +1,48 @@
//========= Copyright <20> 1996-2009, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=====================================================================================//
#include "cbase.h"
#if defined ( GAME_DLL )
#include "Effects/inferno.h"
#define INFERNOCLASS CInferno
#define FIRECRACKERBLASTCLASS CFireCrackerBlast
#endif
#if defined( CLIENT_DLL )
#include "Effects/clientinferno.h"
#define INFERNOCLASS C_Inferno
#define FIRECRACKERBLASTCLASS C_FireCrackerBlast
#endif
// NOTE: This has to be the last file included!
#include "tier0/memdbgon.h"
//---------------------------------------------------------
const char *INFERNOCLASS::GetParticleEffectName()
{
return "molotov_groundfire";
}
#if defined( GAME_DLL )
const char *INFERNOCLASS::GetImpactParticleEffectName()
{
return "molotov_explosion";
}
#endif
//---------------------------------------------------------
const char *FIRECRACKERBLASTCLASS::GetParticleEffectName()
{
return "firework_crate_ground_effect";
}
#if defined( GAME_DLL )
const char *FIRECRACKERBLASTCLASS::GetImpactParticleEffectName()
{
return "firework_crate_explosion_01";
}
#endif