20 lines
314 B
Objective-C
20 lines
314 B
Objective-C
//
|
|
// YMRoomGiftCompoundView.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/8/5.
|
|
// 魔法小屋礼物合成
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomGiftCompoundView : UIView
|
|
|
|
///礼物合成的信息
|
|
@property (nonatomic,copy) NSDictionary * compoundGiftInfo;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|