script revision p1

This commit is contained in:
Nikolay Korolev
2021-08-29 19:32:22 +03:00
parent e865e65955
commit 453f8c05a4
25 changed files with 462 additions and 226 deletions

View File

@@ -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
}
};