21 lines
360 B
Objective-C
21 lines
360 B
Objective-C
//
|
|
// VROSoundDelegate.h
|
|
// ViroRenderer
|
|
//
|
|
// Created by Andy Chu on 1/27/17.
|
|
// Copyright © 2017 Viro Media. All rights reserved.
|
|
//
|
|
|
|
#ifndef VROSoundDelegate_h
|
|
#define VROSoundDelegate_h
|
|
|
|
@protocol VROSoundDelegate <NSObject>
|
|
|
|
- (void)soundIsReady;
|
|
- (void)soundDidFail:(NSString *)error;
|
|
- (void)soundDidFinish;
|
|
|
|
@end
|
|
|
|
#endif /* VROSoundDelegate_h */
|