diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OutLookChangeNtf.cs')
| -rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OutLookChangeNtf.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OutLookChangeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OutLookChangeNtf.cs new file mode 100644 index 00000000..813407f7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OutLookChangeNtf.cs @@ -0,0 +1,18 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_OutLookChangeNtf
+ {
+ public static void Process(PtcG2C_OutLookChangeNtf roPtc)
+ {
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.roleid);
+ bool flag = entity == null;
+ if (!flag)
+ {
+ XOutlookHelper.SetOutLookReplace(entity.Attributes, entity, roPtc.Data.outlook);
+ }
+ }
+ }
+}
|
