22 lines
537 B
Objective-C
22 lines
537 B
Objective-C
//
|
|
// XPRoomBackGroundSettingAction.m
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/9/1.
|
|
//
|
|
|
|
#import "XPRoomBackGroundSettingAction.h"
|
|
|
|
@implementation XPRoomBackGroundSettingAction
|
|
|
|
+ (instancetype)action {
|
|
XPRoomBackGroundSettingAction *action = [[XPRoomBackGroundSettingAction alloc] init];
|
|
action.title = YMLocalizedString(@"1.0.18_0");
|
|
action.imageName = @"room_menu_background";
|
|
action.type = RoomMoreMenuType_Room_Type_Background;
|
|
action.titleColor = [DJDKMIMOMColor roomMoreMenuTextColor];
|
|
return action;
|
|
}
|
|
|
|
@end
|