12345678910111213141516171819202122232425 |
- 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;
- }
- }
|