chore(fmod): add files from Chensne/DragonNest

This commit is contained in:
phaneron 2025-08-19 10:12:56 -04:00
commit 50fb3c6b1c
544 changed files with 315778 additions and 0 deletions

View file

@ -0,0 +1,25 @@
#ifndef _FMOD_CHANNEL_DSOUND_EAX4_H
#define _FMOD_CHANNEL_DSOUND_EAX4_H
#include "fmod_settings.h"
#ifdef FMOD_SUPPORT_EAX
#include "fmod_channel_dsound.h"
namespace FMOD
{
class ChannelDSoundEAX4 : public ChannelDSound
{
public:
ChannelDSoundEAX4() { };
FMOD_RESULT setReverbProperties (const FMOD_REVERB_CHANNELPROPERTIES *prop);
FMOD_RESULT getReverbProperties (FMOD_REVERB_CHANNELPROPERTIES *prop);
};
}
#endif /* FMOD_SUPPORT_EAX */
#endif