diff options
Diffstat (limited to 'src/leeds/CustomSoundTrack.h')
-rw-r--r-- | src/leeds/CustomSoundTrack.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/leeds/CustomSoundTrack.h b/src/leeds/CustomSoundTrack.h new file mode 100644 index 00000000..e7b97fbc --- /dev/null +++ b/src/leeds/CustomSoundTrack.h @@ -0,0 +1,20 @@ +#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 + } +};
\ No newline at end of file |