/************************************************************************************

 * FileName    : Layout_UISkillDetails.ts
 * Description : 技能详情界面
 * Version     : v1.0.0
 * CreateTime  : 2024-10-24 10:49:59
 * Author      :
 * Copyright (c) since 2024
 * ==============================================================
 * Method Description:
 *
 * ==============================================================
 ************************************************************************************/
import {_decorator, Button, Component, Node, Label, PageView, ScrollView} from 'cc';
const { ccclass, property } = _decorator;

@ccclass('Layout_UISkillDetails')
export class Layout_UISkillDetails extends Component {
    @property(Button)
    btnClose : Button = null;

    @property(ScrollView)
    scroll : ScrollView = null;

    @property(Label)
    title : Label = null;

    @property(Label)
    title2 : Label = null;

    @property(Node)
    cell : Node = null;
}