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