mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-03 16:13:22 +08:00
24 lines
572 B
C
24 lines
572 B
C
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef TE_EFFECT_DISPATCH_H
|
|
#define TE_EFFECT_DISPATCH_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
#include "effect_dispatch_data.h"
|
|
#include "recipientfilter.h"
|
|
|
|
|
|
void DispatchEffect( const char *pName, const CEffectData &data );
|
|
void DispatchEffect( const char *pName, const CEffectData &data, CRecipientFilter &filter );
|
|
|
|
|
|
#endif // TE_EFFECT_DISPATCH_H
|