2022-05-02 13:04:23 +00:00
|
|
|
import UIPanel from "../Engine/Component/UIPanel/UIPanel";
|
|
|
|
|
|
|
|
const { ccclass, property } = cc._decorator;
|
|
|
|
|
|
|
|
/** VoicePanel */
|
|
|
|
@ccclass
|
|
|
|
export default class Lobby extends UIPanel {
|
|
|
|
|
2022-05-07 02:54:33 +00:00
|
|
|
//#region Lifecycle
|
|
|
|
|
|
|
|
protected *ImplementReadyShow(...param: any[]): IterableIterator<any> {
|
|
|
|
cc.log("Lobby ImplementReadyShow");
|
|
|
|
}
|
2022-05-02 13:04:23 +00:00
|
|
|
|
|
|
|
//#endregion
|
|
|
|
}
|