示例#1
0
 private void OnGameServerCreated(CreateGameServerResult result)
 {
     //IL_0001: Unknown result type (might be due to invalid IL or missing references)
     if ((int)((EventBase)result).result == 0)
     {
         _gameServerInitSuccess = true;
         _lobbyCreatedExternalCallback(result.game_server_id);
         _server_id = result.game_server_id;
     }
 }
示例#2
0
 private void OnGameServerCreated(CreateGameServerResult result)
 {
     if (((EventBase)result).result != null)
     {
         return;
     }
     this._gameServerInitSuccess = true;
     this._lobbyCreatedExternalCallback((RailID)result.game_server_id);
     this._server_id = (RailID)result.game_server_id;
 }