16 lines
349 B
TypeScript
16 lines
349 B
TypeScript
import UIPanel from "../Engine/Component/UIPanel/UIPanel";
|
|
|
|
const { ccclass, property } = cc._decorator;
|
|
|
|
/** VoicePanel */
|
|
@ccclass
|
|
export default class Lobby extends UIPanel {
|
|
|
|
//#region Lifecycle
|
|
|
|
protected *ImplementReadyShow(...param: any[]): IterableIterator<any> {
|
|
cc.log("Lobby ImplementReadyShow");
|
|
}
|
|
|
|
//#endregion
|
|
} |