17 lines
308 B
Objective-C
17 lines
308 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <AVFoundation/AVFoundation.h>
|
|
|
|
#define ShareSoundCalls [SoundCalls shareInstance]
|
|
|
|
@interface SoundCalls : NSObject
|
|
|
|
+ (instancetype)shareInstance;
|
|
|
|
- (void)playBackgroundSound;
|
|
- (void)stopBackgroundSound;
|
|
|
|
- (void)playGunshotSound;
|
|
- (void)stopGunshotSound;
|
|
|
|
@end
|