UGCKitBGMListViewController.h 410 B

1234567891011121314
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #import <UIKit/UIKit.h>
  3. #import "UGCKitTheme.h"
  4. @protocol TCBGMControllerListener <NSObject>
  5. -(void) onBGMControllerPlay:(NSObject*) path;
  6. @end
  7. @interface UGCKitBGMListViewController : UITableViewController
  8. - (instancetype)initWithTheme:(UGCKitTheme*)theme;
  9. -(void)setBGMControllerListener:(id<TCBGMControllerListener>) listener;
  10. -(void)loadBGMList;
  11. @end