Inheritance: MonoSingleton
 void Start()
 {
     httpService = FindObjectOfType<HttpService>();
     webSocketService = FindObjectOfType<WebSocketService>();
 }
 void Start()
 {
     httpService = FindObjectOfType<HttpService>();
     webSocketService = FindObjectOfType<WebSocketService>();
     webSocketService.RegisterCommand(GameConfigUpdateDTO.COMMAND_NAME, GameConfigUpdateCallback, typeof(GameConfigUpdateDTO));
 }
 void Start()
 {
     httpService = FindObjectOfType<HttpService>();
 }