/*layaMaxUI.ts *This class is automatically generated by LayaAirIDE, please do not make any modifications. */
import View=Laya.View;
import Dialog=Laya.Dialog;
import Scene=Laya.Scene;
export module ui {
export class BGPageUI extends View {
constructor(){ super()}
createChildren():void {
super.createChildren();
this.loadScene("BGPage");
}
}
export class MonkeyPageUI extends View {
constructor(){ super()}
createChildren():void {
super.createChildren();
this.loadScene("MonkeyPage");
}
}
}
===============================
/*GameConfig.ts *This class is automatically generated by LayaAirIDE, please do not make any modifications. */
import ImageRunTime from "./game/ImageRunTime"
/*
* 游戏初始化配置;
*/
export default class GameConfig{
static width:number=640;
static height:number=1136;
static scaleMode:string="fixedwidth";
static screenMode:string="none";
static alignV:string="top";
static alignH:string="left";
static startScene:any="mainscene.scene";
static sceneRoot:string="";
static debug:boolean=false;
static stat:boolean=false;
static physicsDebug:boolean=false;
static exportSceneToJson:boolean=false;
constructor(){}
static init(){
var reg: Function = Laya.ClassUtils.regClass;
reg("game/ImageRunTime.ts",ImageRunTime);
}
}
GameConfig.init();