You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
551 B
22 lines
551 B
3 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
|
||
|
#include "cbase.h"
|
||
|
#include "fx.h"
|
||
|
#include "c_te_effect_dispatch.h"
|
||
|
#include "c_te_legacytempents.h"
|
||
|
|
||
|
|
||
|
void HL1ShellEjectCallback( const CEffectData &data )
|
||
|
{
|
||
|
int iType = data.m_fFlags; // 0 = shell, 1 = shotgun shell
|
||
|
|
||
|
tempents->HL1EjectBrass( data.m_vOrigin, data.m_vAngles, data.m_vStart, iType );
|
||
|
}
|
||
|
|
||
|
DECLARE_CLIENT_EFFECT( "HL1ShellEject", HL1ShellEjectCallback );
|