/************************************************************************************ * FileName : Layout_UIDan.ts * Description : * Version : v1.0.0 * CreateTime : 2024-12-06 16:10:49 * Author : * Copyright (c) since 2024 * ============================================================== * Method Description: * * ============================================================== ************************************************************************************/ import { _decorator, Component, Node, Button } from 'cc'; const { ccclass, property } = _decorator; @ccclass('Layout_UIDan') export class Layout_UIDan extends Component { @property(Button) closeBtn : Button = null; @property(Node) content : Node = null; @property(Node) danCell : Node = null; }