Add "soundlist" keyvalue for individual sound replacements.
This commit is contained in:
@@ -5,9 +5,16 @@
|
||||
|
||||
namespace REPLACER
|
||||
{
|
||||
typedef struct
|
||||
{
|
||||
char source[128];
|
||||
char destination[128];
|
||||
} REPLACER;
|
||||
|
||||
void Init(void);
|
||||
bool AddGlobalModel(const char *from, const char *to);
|
||||
bool AddGlobalSound(const char *from, const char *to);
|
||||
bool AddIndividualSound(edict_t *pMonster, const char *from, const char *to);
|
||||
|
||||
const char* FindModelReplacement( edict_t *pMonster, const char *from );
|
||||
inline const char* FindModelReplacement( const char *from ) { return FindModelReplacement( NULL, from ); }
|
||||
|
||||
Reference in New Issue
Block a user