29 lines
554 B
Objective-C
29 lines
554 B
Objective-C
//
|
|
// XPRoomMenuItem.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 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,///礼物
|
|
};
|
|
|
|
@interface XPRoomMenuItem : NSObject
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|