just_audio/darwin/Classes/IndexedPlayerItem.m

17 lines
302 B
Mathematica
Raw Normal View History

2020-09-18 19:17:35 +02:00
#import "IndexedPlayerItem.h"
#import "IndexedAudioSource.h"
@implementation IndexedPlayerItem {
IndexedAudioSource *_audioSource;
}
-(void)setAudioSource:(IndexedAudioSource *)audioSource {
_audioSource = audioSource;
}
-(IndexedAudioSource *)audioSource {
return _audioSource;
}
@end