29 lines
415 B
Objective-C
29 lines
415 B
Objective-C
//
|
|
// XPSocialAction.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2024/12/19.
|
|
//
|
|
|
|
#import "XPRoomMoreMenuAction.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPSocialAction : XPRoomMoreMenuAction
|
|
|
|
// 邀请粉丝
|
|
//+ (instancetype)inviteFansAction;
|
|
|
|
// 发布广播
|
|
//+ (instancetype)releaseRadioAction;
|
|
|
|
// VIP小喇叭
|
|
+ (instancetype)trumpetAction;
|
|
|
|
// 举报房间
|
|
+ (instancetype)reportAction;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|