diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateVoipRoomMemberNtf.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateVoipRoomMemberNtf.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateVoipRoomMemberNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateVoipRoomMemberNtf.cs new file mode 100644 index 00000000..9e3927ce --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateVoipRoomMemberNtf.cs @@ -0,0 +1,17 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_UpdateVoipRoomMemberNtf
+ {
+ public static void Process(PtcG2C_UpdateVoipRoomMemberNtf roPtc)
+ {
+ XApolloDocument specificDocument = XDocuments.GetSpecificDocument<XApolloDocument>(XApolloDocument.uuID);
+ bool flag = specificDocument != null;
+ if (flag)
+ {
+ specificDocument.OnMembersInfoChange(roPtc.Data.dataList);
+ }
+ }
+ }
+}
|