summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/PtcG2C_CloseChooseHeroNtf.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/PtcG2C_CloseChooseHeroNtf.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/PTC/PtcG2C_CloseChooseHeroNtf.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/PtcG2C_CloseChooseHeroNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/PtcG2C_CloseChooseHeroNtf.cs
new file mode 100644
index 00000000..8ee72b9c
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/PTC/PtcG2C_CloseChooseHeroNtf.cs
@@ -0,0 +1,26 @@
+using System;
+using System.IO;
+
+namespace XMainClient
+{
+ internal class PtcG2C_CloseChooseHeroNtf : Protocol
+ {
+ public override uint GetProtoType()
+ {
+ return 38670u;
+ }
+
+ public override void Serialize(MemoryStream stream)
+ {
+ }
+
+ public override void DeSerialize(MemoryStream stream)
+ {
+ }
+
+ public override void Process()
+ {
+ Process_PtcG2C_CloseChooseHeroNtf.Process(this);
+ }
+ }
+}