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

17 lines
242 B
C
Raw Permalink Normal View History

2018-08-14 12:01:21 +00:00
#ifndef __SOUND_CALLS_H__
#define __SOUND_CALLS_H__
class SoundCalls
{
public:
void playBackgroundSound();
void stopBackgroundSound();
void playGunshotSound();
void stopGunshotSound();
};
#endif // __SOUND_CALLS_H__