HallView.ts 415 B

12345678910111213141516171819202122232425
  1. import BasicView from "../../../Engine/Basic/BasicView";
  2. /**
  3. * 大厅页
  4. */
  5. export default class HallView extends BasicView {
  6. public static resPath: string = "HallView";
  7. protected _initView(): void {
  8. }
  9. protected _refreshView(): void {
  10. }
  11. protected _clearView(): void {
  12. }
  13. protected resize () {
  14. this.fgui.width = fgui.GRoot.inst.width;
  15. }
  16. }