public void Recv_Integrated_Indun_Matching_Info_Result(body_SC_INTEGRATED_INDUN_MATCHING_INFO_RESULT data)
	{
		if( eRESULTCODE.eRESULT_SUCC != data.eResult)
		{
			Debug.LogError( "Error: Recv_Integrated_Indun_Matching_Info_Result(): ResultCode: " + data.eResult);
			return;
		}

		// open Indun dlg
		AsHudDlgMgr.Instance.OpenInstantDungeonDlg_Coroutine( data.nIndunBranchTable_LastEnter);
	}
Exemplo n.º 2
0
	void Receive_Integrated_Indun_Matching_Info_Result( byte[] _packet)
	{
		body_SC_INTEGRATED_INDUN_MATCHING_INFO_RESULT result = new body_SC_INTEGRATED_INDUN_MATCHING_INFO_RESULT();
		result.PacketBytesToClass( _packet);
		
		AsInstanceDungeonManager.Instance.Recv_Integrated_Indun_Matching_Info_Result( result);
	}