blob: b2924396000c5cffecdeddca66689522d6dc38e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
namespace XMainClient
{
internal class Process_PtcM2C_FriendDegreeUpNtfNew
{
public static void Process(PtcM2C_FriendDegreeUpNtfNew roPtc)
{
XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
specificDocument.UpdateFriendInfo(roPtc.Data.roleid, roPtc.Data.daydegree, roPtc.Data.alldegree);
XTeamDocument specificDocument2 = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
specificDocument2.RefreshMyTeamView();
}
}
}
|