27 lines
863 B
TypeScript
27 lines
863 B
TypeScript
/************************************************************************************
|
|
|
|
* FileName : Layout_UICommonReward.ts
|
|
* Description :
|
|
* Version : v1.0.0
|
|
* CreateTime : 2024-12-11 21:33:41
|
|
* Author :
|
|
* Copyright (c) since 2024
|
|
* ==============================================================
|
|
* Method Description:
|
|
*
|
|
* ==============================================================
|
|
************************************************************************************/
|
|
import { _decorator, Component, Node, Button } from 'cc';
|
|
const { ccclass, property } = _decorator;
|
|
|
|
@ccclass('Layout_UICommonReward')
|
|
export class Layout_UICommonReward extends Component {
|
|
@property(Button)
|
|
closeBtn : Button = null;
|
|
|
|
@property(Node)
|
|
content : Node = null;
|
|
|
|
@property(Node)
|
|
itemCell : Node = null;
|
|
} |