Ejemplo n.º 1
0
	public void Recv_Integrated_Indun_Matching_GoInto_Result(body_SC_INTEGRATED_INDUN_MATCHING_GOINTO_RESULT data)
	{
		if( eRESULTCODE.eRESULT_FAIL_INDUNMATCHING_NOTMATCHING == data.eResult)
		{
			// remove matching room
			isMatching = false;
			
			AsEventNotifyMgr.Instance.CenterNotify.AddGMMessage( AsTableManager.Instance.GetTbl_String( 2291));
			
			if( true == m_isCounting)
				m_isCounting = false;
		}
		
		Debug.Log( "Recv_Integrated_Indun_Matching_GoInto_Result(): eResult: " + data.eResult);
	}
Ejemplo n.º 2
0
	void Receive_Integrated_Indun_Matching_GoInto_Result( byte[] _packet)
	{
		body_SC_INTEGRATED_INDUN_MATCHING_GOINTO_RESULT result = new body_SC_INTEGRATED_INDUN_MATCHING_GOINTO_RESULT();
		result.PacketBytesToClass( _packet);
		
		AsInstanceDungeonManager.Instance.Recv_Integrated_Indun_Matching_GoInto_Result( result);
	}