23 lines
948 B
TypeScript
23 lines
948 B
TypeScript
/************************************************************************************
|
|
|
|
* FileName : BottomNode.ts
|
|
* Description : 大厅底部节点
|
|
* Version : v1.0.0
|
|
* CreateTime : 2024-10-31 08:49:12
|
|
* Author :
|
|
* Copyright (c) since 2024
|
|
* ==============================================================
|
|
* Method Description:
|
|
*
|
|
* ==============================================================
|
|
************************************************************************************/
|
|
import { _decorator, Component } from 'cc';
|
|
import {tgxAudioMgr, tgxLayout_UITipsBar, tgxUIAlert, tgxUIMgr, tgxUITipsBar} from "db://assets/core_tgx/tgx";
|
|
import { UICollection } from '../ui_collection/UICollection';
|
|
import { UIBag } from '../ui_bag/UIBag';
|
|
import {EMusicDefine} from "db://assets/module_basic/Define/MusicDefine";
|
|
const { ccclass, property } = _decorator;
|
|
|
|
@ccclass('BottomNode')
|
|
export class BottomNode extends Component {
|
|
} |