17 lines
277 B
C
17 lines
277 B
C
|
#ifndef BridgeDelegate_h
|
||
|
#define BridgeDelegate_h
|
||
|
|
||
|
class BridgeDelegate
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
|
||
|
static void playBackgroundSound();
|
||
|
static void stopBackgroundSound();
|
||
|
static void playGunshotSound();
|
||
|
static void stopGunshotSound();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif /* BridgeDelegate_h */
|