22 lines
499 B
Objective-C
22 lines
499 B
Objective-C
//
|
|
// XPTurboModeAction.m
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/9/2.
|
|
//
|
|
|
|
#import "XPRoomEffectAction.h"
|
|
|
|
@implementation XPRoomEffectAction
|
|
|
|
+ (instancetype)action {
|
|
XPRoomEffectAction *action = [[XPRoomEffectAction alloc] init];
|
|
action.title = YMLocalizedString(@"20.20.62_text_14");
|
|
action.imageName = @"room_more_menu_gift_effect";
|
|
action.type = RoomMoreMenuType_MyAnimationEffects_Mode;
|
|
action.titleColor = [DJDKMIMOMColor appCellBackgroundColor];
|
|
return action;
|
|
}
|
|
|
|
@end
|