31 lines
642 B
Objective-C
31 lines
642 B
Objective-C
//
|
|
// YMRoomMenuItem.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/10/14.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSInteger, XPRoomMenuItemType) {
|
|
XPRoomMenuItemType_Input = 1,
|
|
XPRoomMenuItemType_Mic,///话筒
|
|
XPRoomMenuItemType_Voice, ///声音
|
|
XPRoomMenuItemType_Face,///表情
|
|
XPRoomMenuItemType_Message,///房间私聊
|
|
XPRoomMenuItemType_More,///更多
|
|
XPRoomMenuItemType_ArrangeMic,///排麦
|
|
XPRoomMenuItemType_Gift,///礼物
|
|
XPRoomMenuItemType_Noble,///VIP
|
|
MSRoomMenuItemType_Game,///VIP
|
|
};
|
|
|
|
@interface XPRoomMenuItem : NSObject
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|