games/ChaoJiJieYaGuan_LiuBianXing/assets/Script/Tools/gameNetWorkControl.ts

15 lines
301 B
TypeScript

/**
* 游戏网络控制
*/
export default class gameNetWorkControl {
public static _instance:gameNetWorkControl = null
public static get Instance(){
if(null == this._instance){
this._instance = new gameNetWorkControl()
}
return this._instance
}
}