24 lines
775 B
TypeScript
24 lines
775 B
TypeScript
/************************************************************************************
|
|
|
|
* FileName : Layout_UIGetHero.ts
|
|
* Description :
|
|
* Version : v1.0.0
|
|
* CreateTime : 2024-12-10 15:10:46
|
|
* Author :
|
|
* Copyright (c) since 2024
|
|
* ==============================================================
|
|
* Method Description:
|
|
*
|
|
* ==============================================================
|
|
************************************************************************************/
|
|
import { _decorator, Component, Node, Button } from 'cc';
|
|
const { ccclass, property } = _decorator;
|
|
|
|
@ccclass('Layout_UIGetHero')
|
|
export class Layout_UIGetHero extends Component {
|
|
@property(Node)
|
|
heroSpine : Node = null;
|
|
|
|
@property(Button)
|
|
btnClose : Button = null;
|
|
} |