22 lines
499 B
Objective-C
22 lines
499 B
Objective-C
//
|
|
// XPRoomSettingAction.m
|
|
// YuMi
|
|
//
|
|
// Created by Linus on 2025/1/13.
|
|
//
|
|
|
|
#import "XPRoomSettingAction.h"
|
|
|
|
@implementation XPRoomSettingAction
|
|
|
|
+ (instancetype)action {
|
|
XPRoomSettingAction *action = [[XPRoomSettingAction alloc] init];
|
|
action.title = YMLocalizedString(@"XPMoreMenuPresenter21");
|
|
action.imageName = @"room_more_menu_setting";
|
|
action.type = RoomMoreMenuType_Room_Setting;
|
|
action.titleColor = [DJDKMIMOMColor roomMoreMenuTextColor];
|
|
return action;
|
|
}
|
|
|
|
@end
|