20 lines
504 B
Mathematica
20 lines
504 B
Mathematica
![]() |
//
|
||
|
// XPRoomRedPacketAction.m
|
||
|
// YuMi
|
||
|
//
|
||
|
// Created by P on 2025/9/1.
|
||
|
//
|
||
|
|
||
|
#import "XPRoomRedPacketAction.h"
|
||
|
|
||
|
@implementation XPRoomRedPacketAction
|
||
|
+ (instancetype)action {
|
||
|
XPRoomRedPacketAction *action = [[XPRoomRedPacketAction alloc] init];
|
||
|
action.title = YMLocalizedString(@"XPMoreMenuPresenter24");
|
||
|
action.imageName = @"pi_red_packet_entrance";
|
||
|
action.type = RoomMoreMenuType_Room_redPacket;
|
||
|
action.titleColor = [DJDKMIMOMColor roomMoreMenuTextColor];
|
||
|
return action;
|
||
|
}
|
||
|
@end
|