Exemplo n.º 1
0
        private void HandleFriendMessageHistoryResponse(IPacketMsg packetMsg)
        {
            var historyResponse = new ClientMsgProtobuf <CMsgClientChatGetFriendMessageHistoryResponse>(packetMsg);

            var callback = new FriendMsgHistoryCallback(historyResponse.Body, this.Client.Universe);

            this.Client.PostCallback(callback);
        }
Exemplo n.º 2
0
        private void HandleFriendMessageHistoryResponse( IPacketMsg packetMsg )
        {
            var historyResponse = new ClientMsgProtobuf<CMsgClientFSGetFriendMessageHistoryResponse>( packetMsg );

            var callback = new FriendMsgHistoryCallback( historyResponse.Body, this.Client.ConnectedUniverse );
            this.Client.PostCallback( callback );
        }