summaryrefslogtreecommitdiff
path: root/src/leeds/CustomSoundTrack.h
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2021-08-29 19:32:22 +0300
committerNikolay Korolev <nickvnuk@gmail.com>2021-08-29 19:32:22 +0300
commit453f8c05a4fc2ef03ba1d4f7bac43ba871c52fbd (patch)
treeb1586ab27437633e49c795c2e1277f6ca4877cfa /src/leeds/CustomSoundTrack.h
parente865e65955838f3a5901c737263177797c6eebfa (diff)
script revision p1
Diffstat (limited to 'src/leeds/CustomSoundTrack.h')
-rw-r--r--src/leeds/CustomSoundTrack.h20
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