23 lines
388 B
C++
23 lines
388 B
C++
#include "SoundCalls.h"
|
|
#include "BridgeDelegate.h"
|
|
|
|
void SoundCalls::playBackgroundSound()
|
|
{
|
|
BridgeDelegate::playBackgroundSound();
|
|
}
|
|
|
|
void SoundCalls::stopBackgroundSound()
|
|
{
|
|
BridgeDelegate::stopBackgroundSound();
|
|
}
|
|
|
|
void SoundCalls::playGunshotSound()
|
|
{
|
|
BridgeDelegate::playGunshotSound();
|
|
}
|
|
|
|
void SoundCalls::stopGunshotSound()
|
|
{
|
|
BridgeDelegate::stopGunshotSound();
|
|
}
|