summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/PtcC2G_SceneDamageRankReport.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/PtcC2G_SceneDamageRankReport.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/PTC/PtcC2G_SceneDamageRankReport.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/PtcC2G_SceneDamageRankReport.cs b/Client/Assets/Scripts/XMainClient/PTC/PtcC2G_SceneDamageRankReport.cs
new file mode 100644
index 00000000..65a349d3
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/PTC/PtcC2G_SceneDamageRankReport.cs
@@ -0,0 +1,26 @@
+using System;
+using System.IO;
+
+namespace XMainClient
+{
+ internal class PtcC2G_SceneDamageRankReport : Protocol
+ {
+ public override uint GetProtoType()
+ {
+ return 53015u;
+ }
+
+ public override void Serialize(MemoryStream stream)
+ {
+ }
+
+ public override void DeSerialize(MemoryStream stream)
+ {
+ }
+
+ public override void Process()
+ {
+ throw new Exception("Send only protocol can not call process");
+ }
+ }
+}