summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/RPC/RpcC2G_GrowthFundAward.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/RPC/RpcC2G_GrowthFundAward.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/RPC/RpcC2G_GrowthFundAward.cs40
1 files changed, 40 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/RPC/RpcC2G_GrowthFundAward.cs b/Client/Assets/Scripts/XMainClient/RPC/RpcC2G_GrowthFundAward.cs
new file mode 100644
index 00000000..f516530e
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/RPC/RpcC2G_GrowthFundAward.cs
@@ -0,0 +1,40 @@
+using System;
+using System.IO;
+using KKSG;
+using ProtoBuf;
+
+namespace XMainClient
+{
+ internal class RpcC2G_GrowthFundAward : Rpc
+ {
+ public GrowthFundAwardArg oArg = new GrowthFundAwardArg();
+
+ public GrowthFundAwardRes oRes = new GrowthFundAwardRes();
+
+ public override uint GetRpcType()
+ {
+ return 43548u;
+ }
+
+ public override void Serialize(MemoryStream stream)
+ {
+ Serializer.Serialize<GrowthFundAwardArg>(stream, this.oArg);
+ }
+
+ public override void DeSerialize(MemoryStream stream)
+ {
+ this.oRes = Serializer.Deserialize<GrowthFundAwardRes>(stream);
+ }
+
+ public override void Process()
+ {
+ base.Process();
+ Process_RpcC2G_GrowthFundAward.OnReply(this.oArg, this.oRes);
+ }
+
+ public override void OnTimeout(object args)
+ {
+ Process_RpcC2G_GrowthFundAward.OnTimeout(this.oArg);
+ }
+ }
+}