17 lines
242 B
C++
17 lines
242 B
C++
#ifndef __SOUND_CALLS_H__
|
|
#define __SOUND_CALLS_H__
|
|
|
|
class SoundCalls
|
|
{
|
|
|
|
public:
|
|
|
|
void playBackgroundSound();
|
|
void stopBackgroundSound();
|
|
void playGunshotSound();
|
|
void stopGunshotSound();
|
|
|
|
};
|
|
|
|
#endif // __SOUND_CALLS_H__
|