blob: 49461aa664885a21941e9b25b1b835ac7f72d1be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
namespace XMainClient
{
internal class Process_PtcM2C_MSReceiveFlowerNtf
{
public static void Process(PtcM2C_MSReceiveFlowerNtf roPtc)
{
XFlowerReplyDocument specificDocument = XDocuments.GetSpecificDocument<XFlowerReplyDocument>(XFlowerReplyDocument.uuID);
specificDocument.OnReceiveFlower(roPtc.Data);
}
}
}
|