12345678910111213141516171819202122232425 |
- import BasicView from "../../../Engine/Basic/BasicView";
- /**
- * 大厅页
- */
- export default class HallView extends BasicView {
- public static resPath: string = "HallView";
- protected _initView(): void {
-
- }
- protected _refreshView(): void {
-
- }
- protected _clearView(): void {
-
- }
- protected resize () {
- this.fgui.width = fgui.GRoot.inst.width;
- }
- }
|