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