mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 14:46:53 +00:00
24 lines
549 B
C
24 lines
549 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
|