iw4x-client/src/Components/Modules/SoundMutexFix.hpp

15 lines
220 B
C++
Raw Normal View History

2021-08-13 18:27:19 -04:00
#pragma once
namespace Components
{
class SoundMutexFix : public Component
{
public:
SoundMutexFix();
~SoundMutexFix();
static void SND_StopStreamChannelHook(int channel);
static std::mutex snd_mutex;
};
}