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

17 lines
308 B
C
Raw Normal View History

2018-08-13 16:29:26 +00:00
#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