script revision p1
This commit is contained in:
20
src/leeds/CustomSoundTrack.h
Normal file
20
src/leeds/CustomSoundTrack.h
Normal 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
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user