diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/PTC/PtcM2C_KickFMAuchor.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/PtcM2C_KickFMAuchor.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/PtcM2C_KickFMAuchor.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/PtcM2C_KickFMAuchor.cs b/Client/Assets/Scripts/XMainClient/PTC/PtcM2C_KickFMAuchor.cs new file mode 100644 index 00000000..62402a5f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/PtcM2C_KickFMAuchor.cs @@ -0,0 +1,26 @@ +using System;
+using System.IO;
+
+namespace XMainClient
+{
+ internal class PtcM2C_KickFMAuchor : Protocol
+ {
+ public override uint GetProtoType()
+ {
+ return 33806u;
+ }
+
+ public override void Serialize(MemoryStream stream)
+ {
+ }
+
+ public override void DeSerialize(MemoryStream stream)
+ {
+ }
+
+ public override void Process()
+ {
+ Process_PtcM2C_KickFMAuchor.Process(this);
+ }
+ }
+}
|