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