[add] Lobby 按鈕功能

This commit is contained in:
2022-05-08 20:36:56 +08:00
parent b644e0e0ab
commit d302a52d8d
105 changed files with 52578 additions and 3849 deletions

View File

@@ -6,7 +6,19 @@ const { ccclass, property } = cc._decorator;
@ccclass
export default class ScoreBoard extends UIPanel {
//#region OnClick
//#region public
public isSingleMode: boolean = false;
public firstTeam: number = 0;
public selectedList: string[] = [];
//#endregion
//#region Lifecycle
protected *ImplementReadyShow(...param: any[]): IterableIterator<any> {
cc.log("ScoreBoard ImplementReadyShow");
}
//#endregion
}