re3/src/leeds/CustomSoundTrack.h
2021-08-29 19:32:22 +03:00

20 lines
291 B
C++

#pragma once
#include "common.h"
#include "singletonManager.h"
class cCustomSoundTrack : public base::cSingleton<cCustomSoundTrack>
{
public:
bool m_bIsPlaying;
cCustomSoundTrack();
bool IsPlaying()
{
#ifdef CUSTOM_SOUND_TRACK
return m_bIsPlaying;
#else
return false;
#endif
}
};