double-hit-balls/proj.ios/SoundCalls.cpp

23 lines
388 B
C++
Raw Normal View History

2018-08-14 11:53:02 +00:00
#include "SoundCalls.h"
#include "BridgeDelegate.h"
void SoundCalls::playBackgroundSound()
{
2018-08-14 13:51:34 +00:00
BridgeDelegate::playBackgroundSound();
2018-08-14 11:53:02 +00:00
}
void SoundCalls::stopBackgroundSound()
{
BridgeDelegate::stopBackgroundSound();
}
void SoundCalls::playGunshotSound()
{
BridgeDelegate::playGunshotSound();
}
void SoundCalls::stopGunshotSound()
{
BridgeDelegate::stopGunshotSound();
}