- // Copyright (c) 2019 Tencent. All rights reserved.
- #import <UIKit/UIKit.h>
- #import "UGCKitTheme.h"
- @protocol TCBGMControllerListener <NSObject>
- -(void) onBGMControllerPlay:(NSObject*) path;
- @end
- @interface UGCKitBGMListViewController : UITableViewController
- - (instancetype)initWithTheme:(UGCKitTheme*)theme;
- -(void)setBGMControllerListener:(id<TCBGMControllerListener>) listener;
- -(void)loadBGMList;
- @end
|